/bionic/libc/kernel/common/linux/ |
D | notifier.h | 45 #define ATOMIC_INIT_NOTIFIER_HEAD(name) do { spin_lock_init(&(name)->lock); (name)->head = NULL… argument 46 #define BLOCKING_INIT_NOTIFIER_HEAD(name) do { init_rwsem(&(name)->rwsem); (name)->head = NULL;… argument 47 #define RAW_INIT_NOTIFIER_HEAD(name) do { (name)->head = NULL; } while (0) argument 49 #define ATOMIC_NOTIFIER_INIT(name) { .lock = __SPIN_LOCK_UNLOCKED(name.lock), .head = NULL } argument 50 #define BLOCKING_NOTIFIER_INIT(name) { .rwsem = __RWSEM_INITIALIZER((name).rwsem), .head = NULL… argument 51 #define RAW_NOTIFIER_INIT(name) { .head = NULL } argument 52 #define ATOMIC_NOTIFIER_HEAD(name) struct atomic_notifier_head name = ATOMIC_NOTIFIER_INIT(name) argument 54 #define BLOCKING_NOTIFIER_HEAD(name) struct blocking_notifier_head name = BLOCKING_NOTIFIER_INI… argument 55 #define RAW_NOTIFIER_HEAD(name) struct raw_notifier_head name = RAW_NOTIFIER_INIT(name) argument
|
D | moduleparam.h | 35 #define __MODULE_INFO(tag, name, info) static const char __module_cat(name,__LINE__)[] __attribu… argument 37 #define __MODULE_INFO(tag, name, info) argument 40 #define __MODULE_PARM_TYPE(name, _type) __MODULE_INFO(parmtype, name##type, #name ":" _type) argument 46 const char *name; member 70 #define __module_param_call(prefix, name, set, get, arg, perm) static char __param_str_##name[] =… argument 71 #define module_param_call(name, set, get, arg, perm) __module_param_call(MODULE_PARAM_PREFIX, nam… argument 72 #define module_param_named(name, value, type, perm) param_check_##type(name, &(value)); module_… argument 74 #define module_param(name, type, perm) module_param_named(name, name, type, perm) argument 75 #define module_param_string(name, string, len, perm) static struct kparam_string __param_string_#… argument 76 #define __param_check(name, p, type) static inline type *__check_##name(void) { return(p); } argument [all …]
|
D | module.h | 37 #define MODULE_SUPPORTED_DEVICE(name) argument 47 const char *name; member 54 char name[MODULE_NAME_LEN]; member 77 #define MODULE_GENERIC_TABLE(gtype,name) extern const struct gtype##_id __mod_##gtype##_table __… argument 81 #define MODULE_GENERIC_TABLE(gtype,name) argument 92 #define MODULE_DEVICE_TABLE(type,name) MODULE_GENERIC_TABLE(type##_device,name) argument
|
/bionic/libc/private/ |
D | thread_private.h | 25 #define __THREAD_NAME(name) __CONCAT(_thread_tagname_,name) argument 32 #define _THREAD_PRIVATE_MUTEX(name) \ argument 34 #define _THREAD_PRIVATE_MUTEX_LOCK(name) \ argument 36 #define _THREAD_PRIVATE_MUTEX_UNLOCK(name) \ argument
|
D | ThreadLocalBuffer.h | 42 #define GLOBAL_INIT_THREAD_LOCAL_BUFFER(name) \ argument 52 #define LOCAL_INIT_THREAD_LOCAL_BUFFER(type, name, byte_count) \ argument
|
/bionic/libc/kernel/arch-x86/asm/xen/ |
D | hypercall.h | 27 #define _hypercall0(type, name) ({ long __res; asm volatile ( "call %[call]" : "=a" (__res… argument 29 #define _hypercall1(type, name, a1) ({ long __res, __ign1; asm volatile ( "call %[call]" :… argument 30 #define _hypercall2(type, name, a1, a2) ({ long __res, __ign1, __ign2; asm volatile ( "call … argument 31 #define _hypercall3(type, name, a1, a2, a3) ({ long __res, __ign1, __ign2, __ign3; asm volatil… argument 32 #define _hypercall4(type, name, a1, a2, a3, a4) ({ long __res, __ign1, __ign2, __ign3, __ign4; … argument 34 #define _hypercall5(type, name, a1, a2, a3, a4, a5) ({ long __res, __ign1, __ign2, __ign3, __ign… argument
|
/bionic/libc/kernel/arch-arm/asm/ |
D | semaphore.h | 35 #define __SEMAPHORE_INIT(name, cnt) { .count = ATOMIC_INIT(cnt), .wait = __WAIT_QUEUE_HEAD_INI… argument 36 #define __DECLARE_SEMAPHORE_GENERIC(name,count) struct semaphore name = __SEMAPHORE_INIT(name,cou… argument 37 #define DECLARE_MUTEX(name) __DECLARE_SEMAPHORE_GENERIC(name,1) argument 39 #define DECLARE_MUTEX_LOCKED(name) __DECLARE_SEMAPHORE_GENERIC(name,0) argument
|
/bionic/libc/unistd/ |
D | exec.c | 48 execl(const char *name, const char *arg, ...) in execl() 74 execle(const char *name, const char *arg, ...) in execle() 101 execlp(const char *name, const char *arg, ...) in execlp() 127 execv(const char *name, char * const *argv) in execv() 134 execvp(const char *name, char * const *argv) in execvp()
|
/bionic/linker/ |
D | linker_environ.cpp | 62 static const char* env_match(const char* envstr, const char* name) { in env_match() 76 static bool __is_valid_environment_variable(const char* name) { in __is_valid_environment_variable() 111 static bool __is_unsafe_environment_variable(const char* name) { in __is_unsafe_environment_variable() 174 const char* linker_env_get(const char* name) { in linker_env_get()
|
D | linker.cpp | 145 #define DISALLOW_ALLOCATION(return_type, name, ...) \ argument 297 static soinfo* soinfo_alloc(const char* name) { in soinfo_alloc() 442 static Elf32_Sym* soinfo_elf_lookup(soinfo* si, unsigned hash, const char* name) { in soinfo_elf_lookup() 471 const unsigned char* name = (const unsigned char*) _name; in elfhash() local 483 static Elf32_Sym* soinfo_do_lookup(soinfo* si, const char* name, soinfo** lsi, soinfo* needed[]) { in soinfo_do_lookup() 592 Elf32_Sym* dlsym_handle_lookup(soinfo* si, const char* name) in dlsym_handle_lookup() 602 Elf32_Sym* dlsym_linear_lookup(const char* name, soinfo** found, soinfo* start) { in dlsym_linear_lookup() 666 static int open_library_on_path(const char* name, const char* const paths[]) { in open_library_on_path() 682 static int open_library(const char* name) { in open_library() 702 static soinfo* load_library(const char* name) { in load_library() [all …]
|
/bionic/libc/stdlib/ |
D | getenv.c | 46 __findenv(const char *name, int *offset) in __findenv() 75 getenv(const char *name) in getenv()
|
D | setenv.c | 44 setenv(const char *name, const char *value, int rewrite) in setenv() 94 unsetenv(const char *name) in unsetenv()
|
/bionic/tests/ |
D | benchmark.h | 25 Benchmark(const char* name, void (*fn)(int)) { in Benchmark() 29 Benchmark(const char* name, void (*fn_range)(int, int)) { in Benchmark()
|
/bionic/libc/arch-x86/string/ |
D | sse2-wcslen-atom.S | 46 # define ENTRY(name) \ argument 55 # define END(name) \ argument
|
D | sse2-wcschr-atom.S | 56 # define ENTRY(name) \ argument 65 # define END(name) \ argument
|
/bionic/libc/kernel/common/sound/ |
D | tlv.h | 32 #define DECLARE_TLV_DB_SCALE(name, min, step, mute) unsigned int name[] = { TLV_DB_SCALE_ITEM(min… argument 36 #define DECLARE_TLV_DB_MINMAX(name, min_dB, max_dB) unsigned int name[] = { TLV_DB_MINMAX_ITEM(mi… argument 37 #define DECLARE_TLV_DB_MINMAX_MUTE(name, min_dB, max_dB) unsigned int name[] = { TLV_DB_MINMAX_MU… argument 40 #define DECLARE_TLV_DB_LINEAR(name, min_dB, max_dB) unsigned int name[] = { TLV_DB_LINEAR_ITEM(mi… argument
|
/bionic/libc/arch-x86/include/machine/ |
D | asm.h | 108 #define IDTVEC(name) \ argument 110 #define IDTVEC_END(name) \ argument 113 #define IDTVEC(name) \ argument 115 #define IDTVEC_END(name) \ argument 120 #define IDTVEC(name) \ argument 122 #define IDTVEC_END(name) \ argument 125 #define IDTVEC(name) \ argument 127 #define IDTVEC_END(name) \ argument
|
/bionic/libc/kernel/common/asm-generic/ |
D | percpu.h | 24 #define DEFINE_PER_CPU(type, name) __typeof__(type) per_cpu__##name argument 29 #define DECLARE_PER_CPU(type, name) extern __typeof__(type) per_cpu__##name argument
|
/bionic/libc/netbsd/resolv/ |
D | res_query.c | 128 const char *name, /* domain name */ in res_nquery() 222 const char *name, /* domain name */ in res_nsearch() 378 const char *name, in res_nquerydomain() 422 res_hostalias(const res_state statp, const char *name, char *dst, size_t siz) { in res_hostalias()
|
/bionic/libc/bionic/ |
D | system_properties.c | 71 char name[0]; member 105 char name[0]; member 291 static prop_bt *new_prop_bt(const char *name, uint8_t namelen, prop_off_t *off) in new_prop_bt() 306 static prop_info *new_prop_info(const char *name, uint8_t namelen, in new_prop_info() 348 static prop_bt *find_prop_bt(prop_bt *bt, const char *name, uint8_t namelen, in find_prop_bt() 381 static const prop_info *find_property(prop_bt *trie, const char *name, in find_property() 433 const prop_info *__system_property_find(const char *name) in __system_property_find() 441 int __system_property_read(const prop_info *pi, char *name, char *value) in __system_property_read() 467 int __system_property_get(const char *name, char *value) in __system_property_get() 601 int __system_property_add(const char *name, unsigned int namelen, in __system_property_add()
|
D | gethostname.c | 35 struct utsname name; in gethostname() local
|
/bionic/libc/kernel/arch-mips/asm/ |
D | hazards.h | 26 #define ASMMACRO(name, code...) __asm__(".macro " #name "; " #code "; .endm"); static inline vo… argument
|
/bionic/libc/netbsd/net/ |
D | getservbyname.c | 34 getservbyname(const char *name, const char *proto) in getservbyname()
|
/bionic/libc/upstream-netbsd/libc/regex/ |
D | cname.h | 76 const char *name; member
|
/bionic/libc/kernel/common/linux/netfilter/ |
D | xt_helper.h | 24 char name[30]; member
|