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

/bionic/libc/bionic/
H A Dpthread.c580 // a TLS key, the corresponding value will be set to NULL in this thread's TLS
608 * if it is zero, we set the count value to -1 to indicate that the
831 * This flag is set to indicate that the mutex is shared among processes.
1037 * "type" value is zero, so the only bits that will be set are the ones in
1097 * Once we set it to zero the lock is up for grabs. We follow
1112 * The newly-woken thread will replace the 0 we just set above
1206 * In the optimistic case where this works, set the state to 1 to
1818 * bitmap, then set it to 1, saving the destructor altogether
1886 /* set the destructor and bit flag on a newly allocated key */
1991 /* check that we're trying to set dat
2116 pthread_sigmask(int how, const sigset_t *set, sigset_t *oset) argument
[all...]
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_popcount(set->__bits[nn]);
H A Dsched_getaffinity.c31 int sched_getaffinity(pid_t pid, size_t setsize, cpu_set_t* set) argument
33 int ret = __sched_getaffinity(pid, setsize, set);
36 memset((char*)set + ret, '\0', setsize - (size_t)ret);
/bionic/libc/include/
H A Dsignal.h50 * architectures except for the 'mips' one which set it to 128.
59 static __inline__ int sigismember(sigset_t *set, int signum) argument
61 unsigned long *local_set = (unsigned long *)set;
67 static __inline__ int sigaddset(sigset_t *set, int signum) argument
69 unsigned long *local_set = (unsigned long *)set;
76 static __inline__ int sigdelset(sigset_t *set, int signum) argument
78 unsigned long *local_set = (unsigned long *)set;
85 static __inline__ int sigemptyset(sigset_t *set) argument
87 memset(set, 0, sizeof *set);
91 sigfillset(sigset_t *set) argument
[all...]
/bionic/libc/kernel/common/linux/
H A Dfb.h396 __u16 set; member in struct:fb_cursor
H A Dmoduleparam.h49 param_set_fn set; member in struct:kernel_param
64 param_set_fn set; member in struct:kparam_array
70 #define __module_param_call(prefix, name, set, get, arg, perm) static char __param_str_##name[] = prefix #name; static struct kernel_param const __param_##name __attribute_used__ __attribute__ ((unused,__section__ ("__param"),aligned(sizeof(void *)))) = { __param_str_##name, perm, set, get, arg }
71 #define module_param_call(name, set, get, arg, perm) __module_param_call(MODULE_PARAM_PREFIX, name, set, get, arg, perm)
H A Dproc_fs.h62 void *set; member in struct:proc_dir_entry
H A Dxattr.h44 int (*set)(struct inode *inode, const char *name, const void *buffer, member in struct:xattr_handler
/bionic/libc/kernel/tools/
H A Dcpp.py78 def set(self,id,val=None): member in class:Token
145 def set(self,n): member in class:TokenCursor
146 """set the current position"""
223 """set the content of the (next) current line. should be called
331 return tok.set(c)
341 return tok.set(tokLN)
350 return tok.set(tokEOF,value)
358 return tok.set(tokSPACE,value)
368 return tok.set(tokSPACE,c)
379 return tok.set(tokSPAC
[all...]
/bionic/libc/netbsd/resolv/
H A Dres_init.c148 * there will have precedence. Otherwise, the server address is set to
293 * to still have a search list, and anyone to set the
417 /* set search list */
811 res_setservers(res_state statp, const union res_sockaddr_union *set, int cnt) { argument
823 switch (set->sin.sin_family) {
825 size = sizeof(set->sin);
828 &set->sin, size);
831 &set->sin, size);
841 size = sizeof(set->sin6);
844 &set
864 res_getservers(res_state statp, union res_sockaddr_union *set, int cnt) argument
[all...]
/bionic/libc/stdio/
H A Dtmpfile.c47 sigset_t set, oset; local
56 sigfillset(&set);
57 (void)sigprocmask(SIG_BLOCK, &set, &oset);
/bionic/libc/unistd/
H A Dsigwait.c47 int sigwait(const sigset_t *set, int *sig) argument
56 u.dummy_sigset = *set;
64 u.kernel_sigset[0] = *set;
/bionic/libc/wchar/
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;

Completed in 723 milliseconds