HomeSort by: relevance | last modified time | path
    Searched defs:set (Results 1 - 25 of 360) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/lib/libc/gen/
sighold.c 44 sigset_t set; local
46 sigemptyset(&set);
47 if (sigaddset(&set, sig) != 0)
50 return (sigprocmask(SIG_BLOCK, &set, NULL));
sigrelse.c 44 sigset_t set; local
46 sigemptyset(&set);
47 if (sigaddset(&set, sig) != 0)
50 return (sigprocmask(SIG_UNBLOCK, &set, NULL));
sighold.c 44 sigset_t set; local
46 sigemptyset(&set);
47 if (sigaddset(&set, sig) != 0)
50 return (sigprocmask(SIG_BLOCK, &set, NULL));
sigrelse.c 44 sigset_t set; local
46 sigemptyset(&set);
47 if (sigaddset(&set, sig) != 0)
50 return (sigprocmask(SIG_UNBLOCK, &set, NULL));
sigset.c 45 sigset_t set, oset; local
52 if (sigemptyset(&set) != 0)
54 if (sigaddset(&set, sig) != 0)
56 if (sigprocmask(SIG_BLOCK, &set, &oset) != 0)
69 /* Set up and install new disposition. */
81 if (sigemptyset(&set) != 0)
83 if (sigaddset(&set, sig) != 0)
85 if (sigprocmask(SIG_UNBLOCK, &set, &oset) != 0)
sigset.c 45 sigset_t set, oset; local
52 if (sigemptyset(&set) != 0)
54 if (sigaddset(&set, sig) != 0)
56 if (sigprocmask(SIG_BLOCK, &set, &oset) != 0)
69 /* Set up and install new disposition. */
81 if (sigemptyset(&set) != 0)
83 if (sigaddset(&set, sig) != 0)
85 if (sigprocmask(SIG_UNBLOCK, &set, &oset) != 0)
  /src/common/lib/libc/string/
strcspn.c 48 uint8_t set[32]; local
60 (void)memset(set, 0, sizeof(set));
63 set[UC(*charset) >> 3] |= idx[UC(*charset) & 7];
66 if (set[UC(*t) >> 3] & idx[UC(*t) & 7])
strcspn.c 48 uint8_t set[32]; local
60 (void)memset(set, 0, sizeof(set));
63 set[UC(*charset) >> 3] |= idx[UC(*charset) & 7];
66 if (set[UC(*t) >> 3] & idx[UC(*t) & 7])
strpbrk.c 44 #define ADD_NEW_TO_SET(i) (set[inv[i] = idx++] = (i))
45 #define IS_IN_SET(i) (inv[i] < idx && set[inv[i]] == (i))
48 #define IS_IN_SET(i) (set[(i) >> 3] & idx[(i) & 7])
49 #define ADD_TO_SET(i) (void)(set[(i) >> 3] |= idx[(i) & 7])
56 uint8_t set[256], inv[256], idx = 0; local
59 uint8_t set[32];
61 (void)memset(set, 0, sizeof(set));
  /src/sys/arch/arm/amlogic/
meson_clk_gate.c 45 int set; local
49 set = (gate->flags & MESON_CLK_GATE_SET_TO_DISABLE) ? !enable : enable;
54 if (set)
meson_clk_gate.c 45 int set; local
49 set = (gate->flags & MESON_CLK_GATE_SET_TO_DISABLE) ? !enable : enable;
54 if (set)
  /src/usr.bin/talk/
ctl_transact.c 57 struct pollfd set[1]; local
64 set[0].fd = ctl_sockt;
65 set[0].events = POLLIN;
82 nready = poll(set, 1, CTL_WAIT * 1000);
102 nready = poll(set, 1, 0);
ctl_transact.c 57 struct pollfd set[1]; local
64 set[0].fd = ctl_sockt;
65 set[0].events = POLLIN;
82 nready = poll(set, 1, CTL_WAIT * 1000);
102 nready = poll(set, 1, 0);
io.c 63 struct pollfd set[2]; local
74 set[0].fd = sockt;
75 set[0].events = POLLIN;
76 set[1].fd = fileno(stdin);
77 set[1].events = POLLIN;
79 nb = poll(set, 2, A_LONG_TIME * 1000);
87 if (set[0].revents & POLLIN) {
96 if (set[1].revents & POLLIN) {
io.c 63 struct pollfd set[2]; local
74 set[0].fd = sockt;
75 set[0].events = POLLIN;
76 set[1].fd = fileno(stdin);
77 set[1].events = POLLIN;
79 nb = poll(set, 2, A_LONG_TIME * 1000);
87 if (set[0].revents & POLLIN) {
96 if (set[1].revents & POLLIN) {
  /src/games/dab/
random.h 57 void set(size_t z) { function in class:RANDOM
random.h 57 void set(size_t z) { function in class:RANDOM
  /src/usr.bin/mkfifo/
mkfifo.c 61 void *set; local
74 if (!(set = setmode(optarg))) {
75 err(1, "Cannot set file mode `%s'", optarg);
81 mode = getmode(set, 0666);
82 free(set);
mkfifo.c 61 void *set; local
74 if (!(set = setmode(optarg))) {
75 err(1, "Cannot set file mode `%s'", optarg);
81 mode = getmode(set, 0666);
82 free(set);
  /src/usr.bin/sort/
tmp.c 87 sigset_t set, oset; local
95 sigfillset(&set);
96 (void)sigprocmask(SIG_BLOCK, &set, &oset);
tmp.c 87 sigset_t set, oset; local
95 sigfillset(&set);
96 (void)sigprocmask(SIG_BLOCK, &set, &oset);
  /src/bin/sh/
syntax.c 16 #define set(ch, val) [ndx(ch)] = val, macro
23 set('\n', CNL)
24 set('\\', CBACK)
25 set('\'', CSQUOTE)
26 set('"', CDQUOTE)
27 set('`', CBQUOTE)
28 set('$', CVAR)
29 set('}', CENDVAR)
30 set('<', CSPCL)
31 set('>', CSPCL
    [all...]
  /src/games/boggle/boggle/
timer.c 104 struct pollfd set[1]; local
106 set[0].fd = STDIN_FILENO;
107 set[0].events = POLLIN;
108 return (poll(set, 1, tdelay));
  /src/lib/libc/db/db/
dbfile.c 81 sigset_t set, oset; local
99 (void)sigfillset(&set);
100 (void)sigprocmask(SIG_BLOCK, &set, &oset);
  /src/lib/libc/stdio/
tmpfile.c 57 sigset_t set, oset; local
66 sigfillset(&set);
67 (void)sigprocmask(SIG_BLOCK, &set, &oset);

Completed in 61 milliseconds

1 2 3 4 5 6 7 8 91011>>