Searched defs:set (Results 1 - 25 of 26) sorted by path

12

/bionic/libc/bionic/
H A D__FD_chk.cpp33 extern "C" int __FD_ISSET_chk(int fd, fd_set* set, size_t set_size) { argument
41 __fortify_chk_fail("FD_ISSET: set is too small", 0);
43 return FD_ISSET(fd, set);
46 extern "C" void __FD_CLR_chk(int fd, fd_set* set, size_t set_size) { argument
54 __fortify_chk_fail("FD_CLR: set is too small", 0);
56 FD_CLR(fd, set);
59 extern "C" void __FD_SET_chk(int fd, fd_set* set, size_t set_size) { argument
67 __fortify_chk_fail("FD_SET: set is too small", 0);
69 FD_SET(fd, set);
H A Dsched_cpualloc.c37 void __sched_cpufree(cpu_set_t* set) argument
39 free(set);
H A Dsched_cpucount.c31 int __sched_cpucount(size_t setsize, cpu_set_t* set) { argument
37 count += __builtin_popcountl(set->__bits[nn]);
H A Dsched_getaffinity.cpp35 int sched_getaffinity(pid_t pid, size_t set_size, cpu_set_t* set) { argument
36 int rc = __sched_getaffinity(pid, set_size, set);
43 memset(reinterpret_cast<char*>(set) + rc, 0, set_size - rc);
H A Dsigaddset.cpp31 int sigaddset(sigset_t* set, int signum) { argument
33 unsigned long* local_set = (unsigned long*) set;
34 if (set == NULL || bit < 0 || bit >= (int) (8*sizeof(sigset_t))) {
H A Dsigdelset.cpp31 int sigdelset(sigset_t* set, int signum) { argument
33 unsigned long* local_set = (unsigned long*) set;
34 if (set == NULL || bit < 0 || bit >= (int) (8*sizeof(sigset_t))) {
H A Dsigemptyset.cpp31 int sigemptyset(sigset_t* set) { argument
32 if (set == NULL) {
36 memset(set, 0, sizeof(sigset_t));
H A Dsigfillset.cpp31 int sigfillset(sigset_t* set) { argument
32 if (set == NULL) {
36 memset(set, ~0, sizeof(sigset_t));
H A Dsigismember.cpp31 int sigismember(const sigset_t* set, int signum) { argument
33 const unsigned long* local_set = (const unsigned long*) set;
34 if (set == NULL || bit < 0 || bit >= (int) (8*sizeof(sigset_t))) {
H A Dsigpending.cpp36 kernel_sigset_t set; local
37 int result = __rt_sigpending(&set, sizeof(set));
39 *bionic_set = set.bionic;
H A Dsigwait.cpp38 int sigwait(const sigset_t* set, int* sig) { argument
39 kernel_sigset_t sigset(set);
H A Dtmpfile.cpp46 sigset_t set; local
47 sigfillset(&set);
48 sigprocmask(SIG_BLOCK, &set, &old_set_);
/bionic/libc/dns/resolv/
H A Dres_init.c140 * there will have precedence. Otherwise, the server address is set to
256 * to still have a search list, and anyone to set the
314 /* set search list */
712 res_setservers(res_state statp, const union res_sockaddr_union *set, int cnt) argument
725 switch (set->sin.sin_family) {
727 size = sizeof(set->sin);
730 &set->sin, size);
733 &set->sin, size);
741 size = sizeof(set->sin6);
744 &set
764 res_getservers(res_state statp, union res_sockaddr_union *set, int cnt) argument
[all...]
/bionic/libc/kernel/tools/
H A Dcpp.py78 def set(self,id,val=None): member in class:Token
158 """set the content of the (next) current line. should be called
266 return tok.set(c)
276 return tok.set(tokLN)
284 return tok.set(tokEOF,value)
291 return tok.set(tokSPACE,value)
301 return tok.set(tokSPACE,c)
312 return tok.set(tokSPACE,"\\")
316 return tok.set(c)
332 return tok.set(tokSTRIN
[all...]
/bionic/libc/kernel/uapi/linux/dvb/
H A Dfrontend.h442 __u32 set:1; member in struct:dtv_cmds_h
/bionic/libc/kernel/uapi/linux/
H A Dfb.h390 __u16 set; member in struct:fb_cursor
H A Dnl80211.h519 __u32 set; member in struct:nl80211_sta_flag_update
/bionic/libc/kernel/uapi/linux/netfilter/ipset/
H A Dip_set.h255 union ip_set_name_index set; member in struct:ip_set_req_get_set
265 union ip_set_name_index set; member in struct:ip_set_req_get_set_family
/bionic/libc/private/
H A Dkernel_sigset_t.h31 set(value);
38 void set(const sigset_t* value) { function in union:kernel_sigset_t
/bionic/libc/upstream-freebsd/lib/libc/string/
H A Dwcscspn.c40 wcscspn(const wchar_t *s, const wchar_t *set) argument
47 q = set;
H A Dwcspbrk.c40 wcspbrk(const wchar_t *s, const wchar_t *set) argument
47 q = set;
H A Dwcsspn.c40 wcsspn(const wchar_t *s, const wchar_t *set) argument
47 q = set;
/bionic/tests/
H A Dfortify_test.cpp689 fd_set set; local
690 memset(&set, 0, sizeof(set));
691 ASSERT_EXIT(FD_ISSET(-1, &set), testing::KilledBySignal(SIGABRT), "");
698 fd_set* set = (fd_set*) buf; local
699 ASSERT_EXIT(FD_ISSET(0, set), testing::KilledBySignal(SIGABRT), "");
708 fd_set* set = (fd_set*) buf; local
709 ASSERT_EXIT(FD_ZERO_function(set), testing::KilledBySignal(SIGABRT), "");
H A Dpthread_test.cpp292 sigset_t set; local
293 sigemptyset(&set);
294 sigaddset(&set, SIGUSR1);
295 ASSERT_EQ(0, pthread_sigmask(SIG_BLOCK, &set, NULL));
H A Dsched_test.cpp45 // For glibc, any call to clone with CLONE_VM set will cause later pthread
63 cpu_set_t set; local
65 CPU_ZERO(&set);
66 CPU_SET(0, &set);
67 CPU_SET(17, &set);
69 ASSERT_EQ(i == 0 || i == 17, CPU_ISSET(i, &set));
72 // We should fail silently if we try to set/test outside the range.
73 CPU_SET(CPU_SETSIZE, &set);
74 ASSERT_FALSE(CPU_ISSET(CPU_SETSIZE, &set));
78 cpu_set_t set; local
90 cpu_set_t set; local
100 cpu_set_t set; local
160 cpu_set_t* set = CPU_ALLOC(17); local
172 cpu_set_t* set = CPU_ALLOC(10 * CPU_SETSIZE); local
186 cpu_set_t* set = CPU_ALLOC(set_size); local
[all...]

Completed in 1074 milliseconds

12