HomeSort by: relevance | last modified time | path
    Searched defs:set (Results 1 - 25 of 733) 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));
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/crypto/external/bsd/heimdal/dist/lib/gssapi/mech/
gss_create_empty_oid_set.c 37 gss_OID_set set; local
42 set = malloc(sizeof(gss_OID_set_desc));
43 if (!set) {
48 set->count = 0;
49 set->elements = 0;
50 *oid_set = set;
gss_indicate_mechs.c 39 gss_OID_set set; local
52 minor_status, &set);
55 for (i = 0; i < set->count; i++)
57 minor_status, &set->elements[i], mech_set);
58 gss_release_oid_set(minor_status, &set);
  /src/external/bsd/kyua-testers/dist/
env_test.c 37 ATF_TC_WITHOUT_HEAD(set); variable
38 ATF_TC_BODY(set, tc)
57 ATF_TP_ADD_TC(tp, set);
  /src/external/gpl3/gcc/dist/libstdc++-v3/src/c++98/
parallel_settings.cc 40 _Settings::set(_Settings& obj) throw() function in class:__gnu_parallel::_Settings
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/src/c++98/
parallel_settings.cc 40 _Settings::set(_Settings& obj) throw() function in class:__gnu_parallel::_Settings
  /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])
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)
  /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);
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/external/gpl3/gcc/dist/gcc/config/loongarch/
loongarch-def-array.h 33 loongarch_def_array set (int idx, T &&value) function in class:loongarch_def_array
  /src/games/dab/
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);
  /src/usr.bin/sort/
tmp.c 87 sigset_t set, oset; local
95 sigfillset(&set);
96 (void)sigprocmask(SIG_BLOCK, &set, &oset);
  /src/external/bsd/atf/dist/atf-c++/detail/
env.cpp 60 impl::set(const std::string& name, const std::string& val) function in class:impl
env_test.cpp 51 ATF_TEST_CASE(set); variable
52 ATF_TEST_CASE_HEAD(set)
54 set_md_var("descr", "Tests the set function");
56 ATF_TEST_CASE_BODY(set)
60 atf::env::set("PATH", "foo-bar");
65 atf::env::set("_UNDEFINED_VARIABLE_", "foo2-bar2");
89 ATF_ADD_TEST_CASE(tcs, set);
  /src/external/bsd/atf/dist/tools/
env.cpp 58 throw tools::system_error(IMPL_NAME "::set",
70 impl::set(const std::string& name, const std::string& val) function in class:impl
73 throw tools::system_error(IMPL_NAME "::set",
74 "Cannot set environment variable '" + name +
env_test.cpp 51 ATF_TEST_CASE(set); variable
52 ATF_TEST_CASE_HEAD(set)
54 set_md_var("descr", "Tests the set function");
56 ATF_TEST_CASE_BODY(set)
60 tools::env::set("PATH", "foo-bar");
65 tools::env::set("_UNDEFINED_VARIABLE_", "foo2-bar2");
89 ATF_ADD_TEST_CASE(tcs, set);
  /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 24 milliseconds

1 2 3 4 5 6 7 8 91011>>