/freebsd/crypto/openssl/test/ssl-tests/ |
H A D | 30-extended-master-secret.cnf | 5 test-0 = 0-disable-extended-master-secret-server-sha 6 test-1 = 1-disable-extended-master-secret-client-sha 7 test-2 = 2-disable-extended-master-secret-both-sha 8 test-3 = 3-disable-extended-master-secret-both-resume 9 test-4 = 4-disable-extended-master-secret-server-sha2 10 test-5 = 5-disable-extended-master-secret-client-sha2 11 test-6 = 6-disable-extended-master-secret-both-sha2 14 [0-disable-extended-master-secret-server-sha] 15 ssl_conf = 0-disable-extended-master-secret-server-sha-ssl 17 [0-disable-extended-master-secret-server-sha-ssl] [all …]
|
/freebsd/share/doc/smm/12.timed/ |
H A D | timed.ms | 64 is based on a master slave scheme. 70 among slave time daemons when, for any reason, the master disappears. 77 (one per machine) and is based on a master-slave 81 A \fImaster time daemon\fP measures the time 86 The master computes the \fInetwork time\fP as the average of the 102 will ask the master for the correct time and will reset the machine's clock 110 already has a master and as master on other networks. 116 new master should the machine running the current master crash, the master 119 Under our algorithm, slaves are able to realize when the master has 120 stopped functioning and to elect a new master from among themselves. [all …]
|
/freebsd/sys/contrib/device-tree/Bindings/iommu/ |
H A D | iommu.txt | 2 master(s). 29 IOMMUs can be single-master or multiple-master. Single-master IOMMU devices 30 typically have a fixed association to the master device, whereas multiple- 31 master IOMMU devices can translate accesses from more than one master. 46 - #iommu-cells = <0>: Single master IOMMU devices are not configurable and 48 This may also apply to multiple master IOMMU devices that do not allow the 50 be multi-master yet only expose a single master in a given configuration. 52 - #iommu-cells = <1>: Multiple master IOMMU devices may need to be configured 53 in order to enable translation for a given master. In such cases the single 54 address cell corresponds to the master device's ID. In some cases more than [all …]
|
/freebsd/sys/dev/drm2/ |
H A D | drm_stub.c | 104 struct drm_master *master; in drm_master_create() local 106 master = malloc(sizeof(*master), DRM_MEM_KMS, M_NOWAIT | M_ZERO); in drm_master_create() 107 if (!master) in drm_master_create() 110 refcount_init(&master->refcount, 1); in drm_master_create() 111 mtx_init(&master->lock.spinlock, "drm_master__lock__spinlock", in drm_master_create() 113 DRM_INIT_WAITQUEUE(&master->lock.lock_queue); in drm_master_create() 114 drm_ht_create(&master->magiclist, DRM_MAGIC_HASH_ORDER); in drm_master_create() 115 INIT_LIST_HEAD(&master->magicfree); in drm_master_create() 116 master->minor = minor; in drm_master_create() 118 list_add_tail(&master->head, &minor->master_list); in drm_master_create() [all …]
|
H A D | drm_ioctl.c | 55 struct drm_master *master = file_priv->master; in drm_getunique() local 57 if (u->unique_len >= master->unique_len) { in drm_getunique() 58 if (copy_to_user(u->unique, master->unique, master->unique_len)) in drm_getunique() 61 u->unique_len = master->unique_len; in drm_getunique() 68 struct drm_master *master) in drm_unset_busid() argument 71 free(master->unique, DRM_MEM_DRIVER); in drm_unset_busid() 72 master->unique = NULL; in drm_unset_busid() 73 master->unique_len = 0; in drm_unset_busid() 74 master->unique_size = 0; in drm_unset_busid() 95 struct drm_master *master = file_priv->master; in drm_setunique() local [all …]
|
H A D | drm_fops.c | 221 /* if there is no current master make this fd it */ in drm_open_helper() 223 if (!priv->minor->master) { in drm_open_helper() 224 /* create a new master */ in drm_open_helper() 225 priv->minor->master = drm_master_create(priv->minor); in drm_open_helper() 226 if (!priv->minor->master) { in drm_open_helper() 234 priv->master = drm_master_get(priv->minor->master); in drm_open_helper() 240 ret = dev->driver->master_create(dev, priv->master); in drm_open_helper() 244 drm_master_put(&priv->minor->master); in drm_open_helper() 245 drm_master_put(&priv->master); in drm_open_helper() 255 drm_master_put(&priv->minor->master); in drm_open_helper() [all …]
|
H A D | drm_lock.c | 59 struct drm_master *master = file_priv->master; in drm_lock() local 72 master->lock.hw_lock->lock, lock->flags); in drm_lock() 74 mtx_lock(&master->lock.spinlock); in drm_lock() 75 master->lock.user_waiters++; in drm_lock() 76 mtx_unlock(&master->lock.spinlock); in drm_lock() 80 if (!master->lock.hw_lock) { in drm_lock() 87 if (drm_lock_take(&master->lock, lock->context)) { in drm_lock() 88 master->lock.file_priv = file_priv; in drm_lock() 89 master->lock.lock_time = jiffies; in drm_lock() 96 ret = -sx_sleep(&master->lock.lock_queue, &drm_global_mutex, in drm_lock() [all …]
|
H A D | drm_auth.c | 51 static struct drm_file *drm_find_file(struct drm_master *master, drm_magic_t magic) in drm_find_file() argument 56 struct drm_device *dev = master->minor->dev; in drm_find_file() 59 if (!drm_ht_find_item(&master->magiclist, (unsigned long)magic, &hash)) { in drm_find_file() 78 static int drm_add_magic(struct drm_master *master, struct drm_file *priv, in drm_add_magic() argument 82 struct drm_device *dev = master->minor->dev; in drm_add_magic() 91 drm_ht_insert_item(&master->magiclist, &entry->hash_item); in drm_add_magic() 92 list_add_tail(&entry->head, &master->magicfree); in drm_add_magic() 107 int drm_remove_magic(struct drm_master *master, drm_magic_t magic) in drm_remove_magic() argument 111 struct drm_device *dev = master->minor->dev; in drm_remove_magic() 116 if (drm_ht_find_item(&master->magiclist, (unsigned long)magic, &hash)) { in drm_remove_magic() [all …]
|
/freebsd/share/doc/smm/11.timedop/ |
H A D | timed.ms | 65 The algorithms implemented by the service is based on a master-slave scheme. 74 among slave time daemons when, for any reason, the master disappears. 82 A \fImaster time daemon\fP measures the time 85 The master computes the \fInetwork time\fP as the average of the 101 will ask the master for the correct time and will reset the machine's clock 110 new master should the machine running the current master crash, the master 113 Under our algorithm, slaves are able to realize when the master has 114 stopped functioning and to elect a new master from among themselves. 115 It is important to note that, since the failure of the master results 125 The submaster appears as a slave on one network, and as a master [all …]
|
/freebsd/sys/contrib/device-tree/Bindings/clock/ |
H A D | brcm,kona-ccu.txt | 62 "brcm,bcm11351-master-ccu" 81 master sdio1 peri 0 BCM281XX_MASTER_CCU_SDIO1 82 master sdio2 peri 1 BCM281XX_MASTER_CCU_SDIO2 83 master sdio3 peri 2 BCM281XX_MASTER_CCU_SDIO3 84 master sdio4 peri 3 BCM281XX_MASTER_CCU_SDIO4 85 master dmac peri 4 BCM281XX_MASTER_CCU_DMAC 86 master usb_ic peri 5 BCM281XX_MASTER_CCU_USB_IC 87 master hsic2_48m peri 6 BCM281XX_MASTER_CCU_HSIC_48M 88 master hsic2_12m peri 7 BCM281XX_MASTER_CCU_HSIC_12M 107 "brcm,bcm21664-master-ccu" [all …]
|
/freebsd/usr.sbin/periodic/etc/daily/ |
H A D | 200.backup-passwd | 15 if [ ! -f /etc/master.passwd ] 17 echo '$daily_backup_passwd_enable" is set but /etc/master.passwd' \ 32 if [ ! -f $bak/master.passwd.bak ] 35 echo "no $bak/master.passwd.bak" 36 cp -p /etc/master.passwd $bak/master.passwd.bak || rc=3 39 if ! cmp -s $bak/master.passwd.bak /etc/master.passwd 43 diff ${daily_diff_flags} -I '^#' $bak/master.passwd.bak /etc/master.passwd |\ 45 mv $bak/master.passwd.bak $bak/master.passwd.bak2 46 cp -p /etc/master.passwd $bak/master.passwd.bak || rc=3
|
/freebsd/sys/contrib/device-tree/Bindings/fsi/ |
H A D | fsi.txt | 8 that is an I2C master - the I2C bus can be described by the device tree under 11 FSI masters may require their own DT nodes (to describe the master HW itself); 12 that requirement is defined by the master's implementation, and is described by 13 the fsi-master-* binding specifications. 18 fsi-master { 19 /* top-level of FSI bus topology, bound to an FSI master driver and 46 FSI master nodes declare themselves as such with the "fsi-master" compatible 50 compatible = "fsi-master-gpio", "fsi-master"; 52 Since the master nodes describe the top-level of the FSI topology, they also 59 An optional boolean property can be added to indicate that a particular master [all …]
|
/freebsd/usr.sbin/rpc.yppasswdd/ |
H A D | rpc.yppasswdd.8 | 39 .Op Fl t Ar master.passwd template file 64 .Pa /var/yp/master.passwd 66 .Pa master.passwd 105 .Pa /var/yp/master.passwd ) 120 also allows the super-user on the NIS master server to perform more 123 any field in any user's master.passwd entry in any domain, and can 132 master server: none of these special functions can be performed over 137 utility can only be run on a machine that is an NIS master server. 141 .It Fl t Ar master.passwd template file 145 .Pa master.passwd [all …]
|
/freebsd/usr.sbin/ypserv/ |
H A D | ypinit.sh | 3 # ypinit.sh - setup a master or slave server. 12 MAPLIST="master.passwd.byname master.passwd.byuid passwd.byname passwd.byuid \ 32 SERVERTYPE=MASTER 49 SERVERTYPE=MASTER 57 MASTER=${2} 75 MASTER=${2} 86 The `-m' flag builds a master YP server, and the `-s' flag builds 89 The `-u' is for updating the ypservers map on a master server. 116 # Check if we have contact with master. 117 # If we can't list the maps on the master, then we fake it with a [all …]
|
H A D | ypinit.8 | 53 master or slave server. 55 On a master server, 76 populates it with copies of the NIS maps from the master. 78 are obtained from the master using the 84 the system is configured as an NIS client and is bound to the master 89 utility to obtain a list of maps exported by the master server. 90 If the system is not configured as a client of the NIS master, 93 exist on the master. 99 be transferred manually from the master using 107 Set up a master server. [all …]
|
H A D | Makefile.yp | 5 # This Makefile should only be run on the NIS master server of a domain. 13 # If this machine is an NIS master, reset this variable (NOPUSH=) 21 # from the master.passwd file, reset this variable (SHADOW=) in 30 # master.passwd and shadow maps (which have real encrypted passwords 43 # Normally, the master.passwd.* and shadow.* maps are guarded against access 87 # NIS passwd and master.passwd files are stored in /var/yp: the server's 89 # the real /etc/passwd and /etc/master.passwd files by: 92 # - invoking yppasswdd with `-t /etc/master.passwd' (yppasswdd will do a 93 # 'pwd_mkdb' as needed if /etc/master.passwd is thus specified). 94 # - Specifying the location of the master.passwd file using the [all …]
|
/freebsd/contrib/netbsd-tests/kernel/tty/ |
H A D | t_pr.c | 72 exercise_ptytty(int master, int slave) in exercise_ptytty() argument 77 * send a few bytes from master to slave and read them back in exercise_ptytty() 79 error = sendsome(master, slave); in exercise_ptytty() 84 rump_sys_ioctl(master, TIOCFLUSH, &flags); in exercise_ptytty() 89 error = sendsome(slave, master); in exercise_ptytty() 94 rump_sys_ioctl(master, TIOCFLUSH, &flags); in exercise_ptytty() 108 int master, slave, error, v; in ATF_TC_BODY() local 114 master = rump_sys_open("/dev/ptyp1", O_RDWR); in ATF_TC_BODY() 115 ATF_CHECK(master != -1); in ATF_TC_BODY() 119 error = exercise_ptytty(master, slave); in ATF_TC_BODY() [all …]
|
/freebsd/sys/contrib/device-tree/Bindings/soc/qcom/ |
H A D | qcom,rpm-master-stats.yaml | 4 $id: http://devicetree.org/schemas/soc/qcom/qcom,rpm-master-stats.yaml# 7 title: Qualcomm Technologies, Inc. (QTI) RPM Master Stats 17 and total system-wide power collapse) are first made at Master-level, and 20 The Master Stats provide a few useful bits that can be used to assess whether 31 const: qcom,rpm-master-stats 35 description: Phandle to an RPM MSG RAM slice containing the master stats 41 qcom,master-names: 44 The name of the RPM Master which owns the MSG RAM slice where this 45 instance of Master Stats resides 52 - qcom,master-names [all …]
|
/freebsd/lib/libutil/ |
H A D | pty.c | 51 int master, slave; in openpty() local 53 master = posix_openpt(O_RDWR|O_NOCTTY); in openpty() 54 if (master == -1) in openpty() 57 if (grantpt(master) == -1) in openpty() 60 if (unlockpt(master) == -1) in openpty() 63 slavename = ptsname(master); in openpty() 71 *amaster = master; in openpty() 83 bad: close(master); in openpty() 90 int master, slave, pid; in forkpty() local 92 if (openpty(&master, &slave, name, termp, winp) == -1) in forkpty() [all …]
|
/freebsd/crypto/heimdal/lib/kadm5/ |
H A D | iprop.8 | 39 .Nm ipropd-master , 41 .Nd propagate changes to a Heimdal Kerberos master KDC to slave KDCs 43 .Nm ipropd-master 83 .Ar master 85 .Nm ipropd-master 87 master Kerberos server on which it runs to slave Kerberos servers 104 .Fa master 105 specifies the hostname of the master server from which to receive updates. 111 normally sends only the changes as they happen on the master. 112 The master keeps track of all the changes by assigning a version [all …]
|
/freebsd/crypto/openssl/test/recipes/ |
H A D | 70-test_tlsextms.t | 51 #Test 1: By default server and client should send extended master secret 60 checkmessages(1, "Default extended master secret test", 1, 1, 1); 62 #Test 2: If client omits extended master secret extension, server should too. 70 checkmessages(2, "No client extension extended master secret test", 0, 0, 1); 79 checkmessages(3, "No ticket extended master secret test", 1, 1, 1); 88 checkmessages(4, "No ticket, no client extension extended master secret test", 0, 0, 1); 90 #Test 5: Session resumption extended master secret test 104 checkmessages(5, "Session resumption extended master secret test", 1, 1, 0); 107 #Test 6: Session resumption extended master secret test original session 122 checkmessages(6, "Session resumption extended master secret test", 1, 1, 1); [all …]
|
/freebsd/contrib/ntp/ |
H A D | README.pullrequests | 5 There are two branches, master and stable. 10 The master branch is for new development, also known as ntp-dev (which 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. 20 work on a copy of the master branch. 22 Make sure that any changes you make to stable pull cleanly into master. 24 It's possible that after pulling your changes from stable to master that 25 some additional cleanup will be required in master. Please do this. 28 master or for master+stable, it will be easy for us to evaluate and 45 ntp master to your own account. Once done, it will go to your account's [all …]
|
/freebsd/usr.sbin/pw/tests/ |
H A D | helper_functions.shin | 11 cp ${TESTDIR}/master.passwd ${HOME} || \ 12 atf_fail "Populating master.passwd in ${HOME}" 16 pwd_mkdb -p -d ${HOME} ${HOME}/master.passwd || \ 17 atf_fail "generate passwd from master.passwd" 23 cp ${TESTDIR}/master.passwd ${HOME}/etc || \ 24 atf_fail "Populating master.passwd in ${HOME}/etc" 29 pwd_mkdb -p -d ${HOME}/etc ${HOME}//etc/master.passwd || \ 30 atf_fail "generate passwd from master.passwd"
|
/freebsd/sys/contrib/device-tree/Bindings/ata/ |
H A D | cortina,gemini-sata-bridge.txt | 18 Mode 0: ata0 master <-> sata0 19 ata1 master <-> sata1 21 Mode 1: ata0 master <-> sata0 22 ata1 master <-> sata1 24 Mode 2: ata1 master <-> sata1 26 ata0 master and slave interfaces brought out 28 Mode 3: ata0 master <-> sata0 30 ata1 master and slave interfaces brought out 36 and whether master, slave or both interfaces get brought out.
|
/freebsd/tests/sys/kern/ |
H A D | tty_pts.c | 23 int master, slave; in ATF_TC_BODY() local 26 ATF_REQUIRE_EQ(0, newpty(&master, &slave)); in ATF_TC_BODY() 29 ATF_REQUIRE_EQ(0, ioctl(master, FIONREAD, &bytes)); in ATF_TC_BODY() 33 ATF_REQUIRE_EQ(0, ioctl(master, FIONREAD, &bytes)); in ATF_TC_BODY() 37 ATF_REQUIRE_EQ(sizeof(buf) - 1, read(master, rbuf, sizeof(rbuf))); in ATF_TC_BODY() 38 ATF_REQUIRE_EQ(0, ioctl(master, FIONREAD, &bytes)); in ATF_TC_BODY() 46 ATF_REQUIRE_EQ(0, ioctl(master, FIONREAD, &bytes)); in ATF_TC_BODY() 55 ATF_REQUIRE_EQ(0, ioctl(master, FIONREAD, &bytes)); in ATF_TC_BODY() 57 ATF_REQUIRE_EQ(0, read(master, rbuf, sizeof(rbuf))); in ATF_TC_BODY()
|