Home
last modified time | relevance | path

Searched +full:on +full:- +full:the +full:- +full:go (Results 1 – 25 of 1082) sorted by relevance

12345678910>>...44

/freebsd/sbin/init/
H A DNOTES2 --------------
8 This is part of the extensive 'job control' glossary entry.
10 protection from job control signals to jobs it starts --
19 the problem. I'm not clear what happens in Reno; I have
20 the impression that when the controlling process terminates,
21 references to the controlling terminal are converted to
27 Orphaned process groups bear indirectly on this issue. A
29 that is, it's immune to job control signals from the terminal.
33 'Historically, the implementation-dependent process that
35 waiting on them is called "init" and has a process ID of 1.'
[all …]
/freebsd/contrib/wpa/wpa_supplicant/
H A DREADME-P2P1 wpa_supplicant and Wi-Fi P2P
4 This document describes how the Wi-Fi P2P implementation in
5 wpa_supplicant can be configured and how an external component on the
10 Introduction to Wi-Fi P2P
11 -------------------------
15 More information about Wi-Fi P2P is available from Wi-Fi Alliance:
16 http://www.wi-fi.org/Wi-Fi_Direct.php
20 -----------------------------
26 ----------------------------
28 Wi-Fi P2P is an optional component that needs to be enabled in the
[all …]
H A Dp2p_supplicant.c2 * wpa_supplicant - P2P
3 * Copyright (c) 2009-2010, Atheros Communications
4 * Copyright (c) 2010-2014, Jouni Malinen <j@w1.fi>
6 * This software may be distributed under the terms of the BSD license.
43 * How many times to try to scan to find the GO before giving up on join
51 * Defines time interval in seconds when a GO needs to evacuate a frequency that
57 * Defines CSA parameters which are used when GO evacuates the no longer valid
58 * channel (and if the driver supports channel switch).
65 * How many seconds to try to reconnect to the GO when connection in P2P client
73 * How many seconds to wait for initial 4-way handshake to get completed after
[all …]
H A Dconfig.h3 * Copyright (c) 2003-2012, Jouni Malinen <j@w1.fi>
5 * This software may be distributed under the terms of the BSD license.
23 * The default dot11RSNASAERetransPeriod is defined as 40 ms in the standard,
24 * but use 1000 ms in practice to avoid issues on low power CPUs.
46 #define DEFAULT_DISASSOC_IMMINENT_RSSI_THRESHOLD -75
63 * next - Next credential in the list
65 * This pointer can be used to iterate over all credentials. The head
66 * of this list is stored in the cred field of struct wpa_config.
71 * id - Unique id for the credential
74 * block when using the control interface. Each credential is allocated
[all …]
/freebsd/contrib/wpa/src/p2p/
H A Dp2p_dev_disc.c2 * Wi-Fi Direct - P2P Device Discoverability procedure
5 * This software may be distributed under the terms of the BSD license.
18 struct p2p_device *go, in p2p_build_dev_disc_req() argument
28 go->dialog_token++; in p2p_build_dev_disc_req()
29 if (go->dialog_token == 0) in p2p_build_dev_disc_req()
30 go->dialog_token = 1; in p2p_build_dev_disc_req()
31 p2p_buf_add_public_action_hdr(buf, P2P_DEV_DISC_REQ, go->dialog_token); in p2p_build_dev_disc_req()
35 p2p_buf_add_group_id(buf, go->info.p2p_device_addr, go->oper_ssid, in p2p_build_dev_disc_req()
36 go->oper_ssid_len); in p2p_build_dev_disc_req()
50 * Use P2P find, if needed, to find the other device or to in p2p_dev_disc_req_cb()
[all …]
H A Dp2p.h2 * Wi-Fi Direct - P2P module
3 * Copyright (c) 2009-2010, Atheros Communications
5 * This software may be distributed under the terms of the BSD license.
23 #define P2PS_WILD_HASH_STR "org.wi-fi.wfds"
29 * P2P_MAX_PREF_CHANNELS - Maximum number of preferred channels
34 * P2P_MAX_REG_CLASSES - Maximum number of regulatory classes
39 * P2P_MAX_REG_CLASS_CHANNELS - Maximum number of channels per regulatory class
44 * struct p2p_channels - List of supported channels
48 * struct p2p_reg_class - Supported regulatory class
52 * reg_class - Regulatory class (IEEE 802.11-2007, Annex J)
[all …]
H A Dp2p_go_neg.c2 * Wi-Fi Direct - P2P Group Owner Negotiation
3 * Copyright (c) 2009-2010, Atheros Communications
5 * This software may be distributed under the terms of the BSD license.
26 return -1; /* both devices want to become GO */ in p2p_go_det()
28 /* Use tie breaker bit to determine GO */ in p2p_go_det()
45 ch = &dev->channels; in p2p_peer_channels_check()
50 if (end - pos < 3) in p2p_peer_channels_check()
51 return -1; in p2p_peer_channels_check()
52 os_memcpy(dev->country, pos, 3); in p2p_peer_channels_check()
54 if (pos[2] != 0x04 && os_memcmp(pos, p2p->cfg->country, 2) != 0) { in p2p_peer_channels_check()
[all …]
H A Dp2p_i.h2 * P2P - Internal definitions for P2P module
3 * Copyright (c) 2009-2010, Atheros Communications
5 * This software may be distributed under the terms of the BSD license.
20 * Device over the P2P Client Info received from a GO.
40 * struct p2p_device - P2P Device data (internal to P2P module)
53 * If the peer was discovered based on an interface address (e.g., GO
54 * from Beacon/Probe Response), the interface address is stored here.
55 * p2p_device_addr must still be set in such a case to the unique
56 * identifier for the P2P Device.
58 * This field is also used during P2PS PD to store the intended GO
[all …]
H A Dp2p.c2 * Wi-Fi Direct - P2P module
3 * Copyright (c) 2009-2010, Atheros Communications
5 * This software may be distributed under the terms of the BSD license.
39 * Many drivers are using 30 second timeout on scan results. Allow a bit larger
45 * P2P_PEER_EXPIRATION_AGE - Number of seconds after which inactive peer
60 dl_list_for_each_safe(dev, n, &p2p->devices, struct p2p_device, list) { in p2p_expire_peers()
61 if (dev->last_seen.sec + P2P_PEER_EXPIRATION_AGE >= now.sec) in p2p_expire_peers()
64 if (dev == p2p->go_neg_peer) { in p2p_expire_peers()
66 * GO Negotiation is in progress with the peer, so in p2p_expire_peers()
67 * don't expire the peer entry until GO Negotiation in p2p_expire_peers()
[all …]
/freebsd/sys/contrib/openzfs/tests/zfs-tests/cmd/
H A Dthreadsappend.c4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License (the "License").
6 * You may not use this file except in compliance with the License.
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 * or https://opensource.org/licenses/CDDL-1.0.
10 * See the License for the specific language governing permissions
11 * and limitations under the License.
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 * If applicable, add the following below this CDDL HEADER, with the
42 * The size of the output file, "go.out", should be 80*8192*2 = 1310720
[all …]
/freebsd/tests/sys/cddl/zfs/tests/threadsappend/
H A Dthreadsappend.c4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License (the "License").
6 * You may not use this file except in compliance with the License.
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10 * See the License for the specific language governing permissions
11 * and limitations under the License.
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 * If applicable, add the following below this CDDL HEADER, with the
39 * The size of the output file, "go.out", should be 80*8192*2 = 1310720
41 * $ cd /tmp; go; ls -l go.out
[all …]
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DTargetLoweringObjectFileImpl.cpp1 //===- llvm/CodeGen/TargetLoweringObjectFileImpl.cpp - Object File Info ---===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
12 //===----------------------------------------------------------------------===//
76 "jumptable-in-function-section", cl::Hidden, cl::init(false),
89 StringRef Key = MFE.Key->getString(); in GetObjCImageInfo()
90 if (Key == "Objective-C Image Info Version") { in GetObjCImageInfo()
91 Version = mdconst::extract<ConstantInt>(MFE.Val)->getZExtValue(); in GetObjCImageInfo()
92 } else if (Key == "Objective-C Garbage Collection" || in GetObjCImageInfo()
[all …]
/freebsd/contrib/ntp/
H A DREADME.pullrequests1 See README.hackers for notes on coding styles.
3 The NTP project's github repository is at https://github.com/ntp-project/ntp.
7 The stable branch is the current supported production code branch, the
8 ntp-stable code (even 2nd number).
10 The master branch is for new development, also known as ntp-dev (which
14 in seeing that work in the current production release then base your work
15 on the stable branch, and pull your work into a master copy to allow for
16 publishing your changes in the ntp-dev or master branch.
18 If there is no expectation that your work will be included in the
19 current stable release (the ntp-stable code) then it's better to do your
[all …]
H A Dpackageinfo.sh2 # packageinfo.sh - set shell variables with version components
5 # permission or the #! shell selector.
7 # Most changes to this file are fully or semi-automated using the
8 # UpdatePoint script on the ntp.org tarball build machine. Changes
9 # required by the typical ntp.org release sequences are below.
13 # To bump the -dev point (p) number, UpdatePoint needs no changes here.
15 # To start a -R
[all...]
/freebsd/tools/test/stress2/misc/
H A Dmmap44.sh4 # SPDX-License-Identifier: BSD-2-Clause
9 # modification, are permitted provided that the following conditions
11 # 1. Redistributions of source code must retain the above copyright
12 # notice, this list of conditions and the following disclaimer.
13 # 2. Redistributions in binary form must reproduce the above copyright
14 # notice, this list of conditions and the following disclaimer in the
15 # documentation and/or other materials provided with the distribution.
17 # THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
18 # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20 # ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
[all …]
H A Dmmap37.sh4 # SPDX-License-Identifier: BSD-2-Clause
9 # modification, are permitted provided that the following conditions
11 # 1. Redistributions of source code must retain the above copyright
12 # notice, this list of conditions and the following disclaimer.
13 # 2. Redistributions in binary form must reproduce the above copyright
14 # notice, this list of conditions and the following disclaimer in the
15 # documentation and/or other materials provided with the distribution.
17 # THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
18 # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20 # ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
[all …]
H A Dpthread9.sh8 # modification, are permitted provided that the following conditions
10 # 1. Redistributions of source code must retain the above copyright
11 # notice, this list of conditions and the following disclaimer.
12 # 2. Redistributions in binary form must reproduce the above copyright
13 # notice, this list of conditions and the following disclaimer in the
14 # documentation and/or other materials provided with the distribution.
16 # THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
17 # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 # ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
23 # HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
[all …]
H A Dmmap48.sh6 # SPDX-License-Identifier: BSD-2-Clause
18 # ---
20 # 256 -rw------- 1 root wheel 262144 Oct 3 10:05 file
21 # 256 -rw------- 1 root wheel 262144 Oct 3 10:04 file.orig
24 [ `id -u ` -ne 0 ] && echo "Must be root!" && exit 1
26 set -u
30 grep -q $mntpoint /etc/exports ||
32 rpcinfo 2>/dev/null | grep -q mountd || exit 0
50 static int fd, go;
64 while (go == -1)
[all …]
/freebsd/tests/sys/kern/pipe/
H A Dpipe_reverse_test.c5 modification, are permitted provided that the following conditions
7 1. Redistributions of source code must retain the above copyright
8 notice, this list of conditions and the following disclaimer.
9 2. Redistributions in binary form must reproduce the above copyright
10 notice, this list of conditions and the following disclaimer in the
11 documentation and/or other materials provided with the distribution.
14 ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20 HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
38 * This program simply tests writing through the reverse direction of
[all …]
H A Dpipe_fstat_bug_test.c5 modification, are permitted provided that the following conditions
7 1. Redistributions of source code must retain the above copyright
8 notice, this list of conditions and the following disclaimer.
9 2. Redistributions in binary form must reproduce the above copyright
10 notice, this list of conditions and the following disclaimer in the
11 documentation and/or other materials provided with the distribution.
14 ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20 HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
39 * The goal of this program is to see if fstat reports the correct
[all …]
/freebsd/contrib/llvm-project/openmp/runtime/src/
H A Dkmp_barrier.cpp5 //===----------------------------------------------------------------------===//
7 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
9 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
11 //===----------------------------------------------------------------------===//
18 #include "ompt-specific.h"
42 // ---------------------------- Barrier Algorithms ----------------------------
45 // Compute how many threads to have polling each cache-line.
46 // We want to limit the number of writes to IDEAL_GO_RESOLUTION.
50 int socket_level = __kmp_topology->get_level(KMP_HW_SOCKET); in computeVarsForN()
51 int core_level = __kmp_topology->get_level(KMP_HW_CORE); in computeVarsForN()
[all …]
/freebsd/contrib/cortex-strings/src/arm/
H A Dmemcpy.S5 modification, are permitted provided that the following conditions
8 * Redistributions of source code must retain the above copyright
9 notice, this list of conditions and the following disclaimer.
11 * Redistributions in binary form must reproduce the above copyright
12 notice, this list of conditions and the following disclaimer in the
13 documentation and/or other materials provided with the distribution.
15 * Neither the name of Linaro Limited nor the names of its
19 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21 LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
22 A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
[all …]
/freebsd/bin/chmod/
H A Dchmod.11 .\"-
3 .\" The Regents of the University of California. All rights reserved.
6 .\" the Institute of Electrical and Electronics Engineers, Inc.
9 .\" modification, are permitted provided that the following conditions
11 .\" 1. Redistributions of source code must retain the above copyright
12 .\" notice, this list of conditions and the following disclaimer.
13 .\" 2. Redistributions in binary form must reproduce the above copyright
14 .\" notice, this list of conditions and the following disclaimer in the
15 .\" documentation and/or other materials provided with the distribution.
16 .\" 3. Neither the name of the University nor the names of its contributors
[all …]
/freebsd/sys/dev/sound/pci/
H A Dcs4281.c1 /*-
2 * SPDX-License-Identifier: BSD-2-Clause
8 * modification, are permitted provided that the following conditions
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
16 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
17 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/Target/
H A DTargetLoweringObjectFile.h1 //===-- llvm/Target/TargetLoweringObjectFile.h - Object Info ----*- C++ -*-===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
12 //===----------------------------------------------------------------------===//
46 /// Name-mangler for global names.
55 /// PersonalityEncoding, LSDAEncoding, TTypeEncoding - Some encoding values
62 /// This section contains the static constructor pointer list.
65 /// This section contains the static destructor pointer list.
80 /// specifies the current context for codegen, and gives the lowering
[all …]

12345678910>>...44