Searched refs:master (Results 1 - 25 of 117) sorted by relevance

12345

/openbsd-current/sys/arch/mips64/include/
H A Dloongson2.h33 * - a base address register, defining the address in the master address
45 #define LOONGSON_AWR_BASE(master, window) \
46 (LOONGSON_AWR_BASE_ADDRESS + (window) * 0x08 + (master) * 0x60 + 0x00)
47 #define LOONGSON_AWR_SIZE(master, window) \
48 (LOONGSON_AWR_BASE_ADDRESS + (window) * 0x08 + (master) * 0x60 + 0x20)
49 #define LOONGSON_AWR_MMAP(master, window) \
50 (LOONGSON_AWR_BASE_ADDRESS + (window) * 0x08 + (master) * 0x60 + 0x40)
/openbsd-current/sys/dev/pci/drm/
H A Ddrm_auth.c43 * DOC: master and authentication
47 * least once successfully became the device master (either through the
49 * no one else is the current master that time) there exists one &drm_master.
53 * In addition only one &drm_master can be the current master for a &drm_device.
58 * Clients can authenticate against the current master (if it matches their own)
70 return fpriv->is_master && drm_lease_owner(fpriv->master) == fpriv->minor->dev->master;
77 * drm_is_current_master - checks whether @priv is the current master
80 * Checks whether @fpriv is current master on its device. This decides whether a
84 * - the current master i
139 struct drm_master *master; local
364 struct drm_master *master; local
398 drm_master_get(struct drm_master *master) argument
417 struct drm_master *master = NULL; local
432 struct drm_master *master = container_of(kref, struct drm_master, refcount); local
454 drm_master_put(struct drm_master **master) argument
[all...]
H A Ddrm_lock.c169 struct drm_master *master = file_priv->master; local
185 master->lock.hw_lock ? master->lock.hw_lock->lock : -1,
188 add_wait_queue(&master->lock.lock_queue, &entry);
189 spin_lock_bh(&master->lock.spinlock);
190 master->lock.user_waiters++;
191 spin_unlock_bh(&master->lock.spinlock);
195 if (!master->lock.hw_lock) {
201 if (drm_lock_take(&master
260 struct drm_master *master = file_priv->master; local
332 struct drm_master *master = file_priv->master; local
355 drm_legacy_lock_master_cleanup(struct drm_device *dev, struct drm_master *master) argument
[all...]
H A Ddrm_legacy_misc.c101 void drm_master_legacy_init(struct drm_master *master) argument
103 mtx_init(&master->lock.spinlock, IPL_TTY);
104 init_waitqueue_head(&master->lock.lock_queue);
/openbsd-current/regress/sys/kern/pledge/generic/
H A Dpty.c15 int master, slave; local
17 master = posix_openpt(O_RDWR);
18 if (master == -1) {
22 if (grantpt(master) == -1) {
26 if (unlockpt(master) == -1) {
31 slave = open(ptsname(master), O_RDWR);
33 warn("%s", ptsname(master));
37 pty->master = master;
46 close(pty->master);
[all...]
H A Dpty.h8 int master; member in struct:pty
/openbsd-current/gnu/gcc/libgomp/testsuite/libgomp.c/
H A Dnestedfn-2.c12 #pragma omp master
H A Dcritical-2.c18 #pragma omp master
H A Dnestedfn-3.c28 #pragma omp master
/openbsd-current/gnu/gcc/libgomp/testsuite/libgomp.c++/
H A Dmaster-1.C12 #pragma omp master
H A Dctor-1.C48 #pragma omp master
H A Dctor-5.C38 #pragma omp master
H A Dctor-7.C50 #pragma omp master
H A Dpr26943.C21 #pragma omp master
/openbsd-current/usr.sbin/ypserv/ypxfr/
H A Dypxfr_1perhour.sh9 /usr/sbin/ypxfr master.passwd.byname
10 /usr/sbin/ypxfr master.passwd.byuid
/openbsd-current/lib/libutil/
H A Dpty.c72 int master, slave; local
82 master = ptm.cfd;
90 *amaster = master;
120 int master, slave; local
123 if (fdopenpty(ptmfd, &master, &slave, name, termp, winp) == -1)
127 (void) close(master);
134 (void) close(master);
141 *amaster = master;
H A Dpasswd.c323 char *master = pw_file(_PATH_MASTERPASSWD); local
325 if (!master)
328 pw_error(master, 1, 1);
334 warnx("%s: line too long", master);
343 warnx("%s: corrupted entry", master);
359 warnx("%s: inconsistent entry", master);
373 free(master);
463 char *master = pw_file(_PATH_MASTERPASSWD); local
471 if (master) {
472 warnx("%s: unchanged", master);
[all...]
/openbsd-current/usr.bin/tic/
H A Dcapconvert78 # Assumes the terminfo master covers all canned terminal types
163 echo "I see the terminfo master source is handy; I will use that."
164 master=../misc/terminfo.src
168 master=`find "$HOME" -name "*terminfo.src" -print`
179 echo "I see a file called $master."
187 echo "$master" | sed "/^/s// /";
191 read master;
192 if test -f "$master"
204 # Now that we have a master, compile it into the local tree
211 sed -n "$master" \
[all...]
/openbsd-current/sys/dev/pci/drm/include/drm/
H A Ddrm_auth.h56 * struct drm_master - drm master structure
58 * @refcount: Refcount for this master object.
62 * Note that master structures are only relevant for the legacy/primary device
126 * lessees, this master cannot be destroyed unless the list is empty.
154 struct drm_master *drm_master_get(struct drm_master *master);
156 void drm_master_put(struct drm_master **master);
/openbsd-current/lib/libc/stdlib/
H A Dposix_pty.c44 /* Get pty master and slave (this API only uses the master). */
58 * Look up the name of the specified pty master fd.
68 /* Make sure it is a pty master. */
93 * The PTMGET ioctl unlocks the pty master and slave for us.
102 * Look up the path of the slave pty that corresponds to the master fd.
108 const char *master; local
111 if ((master = ptmname(mfd)) == NULL)
116 strlcat(slave, master, sizeof(slave));
/openbsd-current/usr.bin/ypwhich/
H A Dypwhich.c136 char *domain, *master, *map = NULL, *host = NULL; local
217 r = yp_master_host(client, domain, map, &master);
219 r = yp_master(domain, map, &master);
223 printf("%s\n", master);
224 free(master);
230 fprintf(stderr, "Can't find master for map %s. Reason: %s\n",
250 domain, ypml->map, &master);
252 r = yp_master(domain, ypml->map, &master);
256 printf("%s %s\n", ypml->map, master);
257 free(master);
[all...]
/openbsd-current/share/termtypes/
H A DMakefile8 terminfo: termtypes.master
12 termcap: termtypes.master
/openbsd-current/usr.sbin/yppoll/
H A Dyppoll.c118 *outname = (char *)strdup(yprm.master);
128 char *domainname, *hostname = NULL, *inmap, *master; local
155 &order, &master);
159 r = yp_master(domainname, inmap, &master);
171 printf("The master server is %s.\n", master);
/openbsd-current/gnu/lib/libreadline/examples/
H A Drlfe.c165 * master side of pty.
174 * Otherwise, it has returned the master pty file descriptor, and fills
182 int master = -1; local
188 for (i=0; i<16 && master <= 0; i++) {
189 for (j=0; j<16 && master <= 0; j++) {
193 /* open the master pty */
194 if ((master = open(*name, O_RDWR)) < 0) {
198 return (master);
202 /* By substituting a letter, we change the master pty
208 close(master);
405 int master; local
[all...]
/openbsd-current/usr.sbin/ypserv/ypinit/
H A DMakefile.yp54 passwd.time: $(DIR)/master.passwd
87 print $$1, $$0 }' - | $(MAKEDBM-S) - master.passwd.byname; \
92 print $$3, $$0 }' - | $(MAKEDBM-S) - master.passwd.byuid; \
98 $(YPPUSH) -d $(DOMAIN) master.passwd.byname; \
99 $(YPPUSH) -d $(DOMAIN) master.passwd.byuid; \
233 netid.time: $(DIR)/passwd $(DIR)/master.passwd $(DIR)/group $(DIR)/hosts $(DIR)/netid
234 -@$(MKNETID) -q -d $(DOMAIN) -p $(DIR)/passwd -P $(DIR)/master.passwd \
339 $(DIR)/master.passwd:

Completed in 242 milliseconds

12345