Home
last modified time | relevance | path

Searched defs:name (Results 1 – 25 of 226) sorted by relevance

12345678910

/bionic/tests/
Dstruct_layout_test.cpp28 #define CHECK_SIZE(name, size) \ in tests() argument
30 #define CHECK_OFFSET(name, field, offset) \ in tests() argument
128 auto check_size = [&](const char* name, size_t size, size_t expected_size) { in TEST()
148 auto print_size = [&](const char* name, size_t size, size_t expected_size) { in TEST()
153 size_t expected_offset) { in TEST()
Dsystem_properties_test.cpp68 char name[PROP_NAME_MAX]; in hierarchical_test_callback() local
102 char name[PROP_NAME_MAX + 11]; in TEST() local
235 char name[PROP_NAME_MAX]; in TEST() local
461 const std::string& name = property.first; in TEST() local
467 const std::string& name = property.first; in TEST() local
480 auto check_with_read_callback = [&system_properties](const std::string& name, in TEST()
495 const std::string& name = property.first; in TEST()
504 const std::string& name = property.first; in TEST() local
521 auto name = "ro.super_long_property"s; in TEST() local
/bionic/libc/private/
Dthread_private.h18 #define __MUTEX_NAME(name) __CONCAT(__libc_mutex_,name) argument
19 #define _THREAD_PRIVATE_MUTEX(name) static pthread_mutex_t __MUTEX_NAME(name) = PTHREAD_MUTEX_INITI… argument
20 #define _THREAD_PRIVATE_MUTEX_LOCK(name) pthread_mutex_lock(&__MUTEX_NAME(name)) argument
21 #define _THREAD_PRIVATE_MUTEX_UNLOCK(name) pthread_mutex_unlock(&__MUTEX_NAME(name)) argument
Dbionic_ifuncs.h45 #define DEFINE_IFUNC_FOR(name) \ argument
51 #define DECLARE_FUNC(type, name) \ argument
55 #define RETURN_FUNC(type, name) { \ argument
/bionic/libc/bionic/
Dexec.cpp52 static int __execl(const char* name, const char* argv0, va_list ap) { in __execl()
78 int execl(const char* name, const char* arg, ...) { in execl()
86 int execle(const char* name, const char* arg, ...) { in execle()
94 int execlp(const char* name, const char* arg, ...) { in execlp()
102 int execv(const char* name, char* const* argv) { in execv()
106 int execvp(const char* name, char* const* argv) { in execvp()
121 int execvpe(const char* name, char* const* argv, char* const* envp) { in execvpe()
Dsystem_property_api.cpp68 const prop_info* __system_property_find(const char* name) { in __system_property_find()
73 int __system_property_read(const prop_info* pi, char* name, char* value) { in __system_property_read()
79 void (*callback)(void* cookie, const char* name, in __system_property_read_callback()
86 int __system_property_get(const char* name, char* value) { in __system_property_get()
96 int __system_property_add(const char* name, unsigned int namelen, const char* value, in __system_property_add()
Dpathconf.cpp77 static long __pathconf(const struct statfs& s, int name) { in __pathconf()
142 long pathconf(const char* path, int name) { in pathconf()
150 long fpathconf(int fd, int name) { in fpathconf()
Dgrp_pwd_file.cpp97 const char* name() const { in name() function
156 const char* name() const { in name() function
276 char name[kGrpPwdBufferSize]; in Find() local
304 bool MmapFile::FindByName(const char* name, Line* line) { in FindByName()
332 bool PasswdFile::FindByName(const char* name, passwd_state_t* passwd_state) { in FindByName()
348 bool GroupFile::FindByName(const char* name, group_state_t* group_state) { in FindByName()
/bionic/linker/
Dlinker_config.cpp73 int next_token(std::string* name, std::string* value, std::string* error_msg) { in next_token()
200 std::string name; in parse_config_file() local
276 std::string name; in parse_config_file() local
296 std::string name; in parse_config_file() local
364 std::vector<std::string> get_strings(const std::string& name, size_t* lineno = nullptr) const { in get_strings()
380 bool get_bool(const std::string& name, size_t* lineno = nullptr) const { in get_bool()
389 std::string get_string(const std::string& name, size_t* lineno = nullptr) const { in get_string()
394 …std::vector<std::string> get_paths(const std::string& name, bool resolve, size_t* lineno = nullptr… in get_paths()
448 find_property(const std::string& name, size_t* lineno) const { in find_property() argument
485 for (const auto& name : additional_namespaces) { in read_binary_config() local
[all …]
Dlinker_translate_path.cpp34 #define APEX_LIB(apex, name) \ argument
37 #define APEX_LIB(apex, name) \ argument
50 bool translateSystemPathToApexPath(const char* name, std::string* out_name_to_apex) { in translateSystemPathToApexPath()
Dlinker_gnu_hash.h46 static std::pair<uint32_t, uint32_t> calculate_gnu_hash_simple(const char* name) { in calculate_gnu_hash_simple()
56 static inline std::pair<uint32_t, uint32_t> calculate_gnu_hash(const char* name) { in calculate_gnu_hash()
/bionic/libc/kernel/uapi/sound/
Dtlv.h35 #define SNDRV_CTL_TLVD_DECLARE_CONTAINER(name,...) unsigned int name[] = { SNDRV_CTL_TLVD_CONTAINER… argument
39 #define SNDRV_CTL_TLVD_DECLARE_DB_SCALE(name,min,step,mute) unsigned int name[] = { SNDRV_CTL_TLVD_… argument
44 #define SNDRV_CTL_TLVD_DECLARE_DB_MINMAX(name,min_dB,max_dB) unsigned int name[] = { SNDRV_CTL_TLVD… argument
45 #define SNDRV_CTL_TLVD_DECLARE_DB_MINMAX_MUTE(name,min_dB,max_dB) unsigned int name[] = { SNDRV_CTL… argument
49 #define SNDRV_CTL_TLVD_DECLARE_DB_LINEAR(name,min_dB,max_dB) unsigned int name[] = { SNDRV_CTL_TLVD… argument
53 #define SNDRV_CTL_TLVD_DECLARE_DB_RANGE(name,...) unsigned int name[] = { SNDRV_CTL_TLVD_DB_RANGE_I… argument
/bionic/libc/system_properties/
Dsystem_properties.cpp125 const prop_info* SystemProperties::Find(const char* name) { in Find()
139 static bool is_read_only(const char* name) { in is_read_only()
174 int SystemProperties::Read(const prop_info* pi, char* name, char* value) { in Read()
198 void (*callback)(void* cookie, const char* name, in ReadCallback()
218 int SystemProperties::Get(const char* name, char* value) { in Get()
273 int SystemProperties::Add(const char* name, unsigned int namelen, const char* value, in Add()
Dprop_info.cpp38 prop_info::prop_info(const char* name, uint32_t namelen, const char* value, uint32_t valuelen) { in prop_info()
46 prop_info::prop_info(const char* name, uint32_t namelen, uint32_t long_offset) { in prop_info()
Dprop_area.cpp157 prop_bt* prop_area::new_prop_bt(const char* name, uint32_t namelen, uint_least32_t* const off) { in new_prop_bt()
169 prop_info* prop_area::new_prop_info(const char* name, uint32_t namelen, const char* value, in new_prop_info()
226 prop_bt* prop_area::find_prop_bt(prop_bt* const bt, const char* name, uint32_t namelen, in find_prop_bt()
275 const prop_info* prop_area::find_property(prop_bt* const trie, const char* name, uint32_t namelen, in find_property()
362 const prop_info* prop_area::find(const char* name) { in find()
366 bool prop_area::add(const char* name, unsigned int namelen, const char* value, in add()
/bionic/benchmarks/spawn/include/
Dspawn_benchmark.h36 static inline std::string test_program(const char* name) { in test_program()
44 #define SPAWN_BENCHMARK(name, ...) \ argument
/bionic/libc/kernel/uapi/asm-riscv/asm/
Dkvm.h92 #define KVM_REG_RISCV_CONFIG_REG(name) (offsetof(struct kvm_riscv_config, name) / sizeof(unsigned l… argument
94 #define KVM_REG_RISCV_CORE_REG(name) (offsetof(struct kvm_riscv_core, name) / sizeof(unsigned long)) argument
96 #define KVM_REG_RISCV_CSR_REG(name) (offsetof(struct kvm_riscv_csr, name) / sizeof(unsigned long)) argument
98 #define KVM_REG_RISCV_TIMER_REG(name) (offsetof(struct kvm_riscv_timer, name) / sizeof(__u64)) argument
100 #define KVM_REG_RISCV_FP_F_REG(name) (offsetof(struct __riscv_f_ext_state, name) / sizeof(__u32)) argument
102 #define KVM_REG_RISCV_FP_D_REG(name) (offsetof(struct __riscv_d_ext_state, name) / sizeof(__u64)) argument
/bionic/libc/dns/resolv/
Dres_query.c129 const char *name, /* domain name */ in res_nquery()
223 const char *name, /* domain name */ in res_nsearch()
379 const char *name, in res_nquerydomain()
423 res_hostalias(const res_state statp, const char *name, char *dst, size_t siz) { in res_hostalias()
/bionic/tools/versioner/tests/fortify_inline/headers/
Dfcntl.h12 int open(const char* name, int flags) in open()
20 int open(const char* name, int flags, mode_t mode) in open()
/bionic/libc/arch-x86_64/string/
Dsse2-strlen-slm.S50 # define ENTRY(name) \ argument
59 # define END(name) \ argument
Dssse3-strcmp-slm.S63 # define ENTRY(name) \ argument
72 # define END(name) \ argument
Dsse2-strcat-slm.S48 # define ENTRY(name) \ argument
57 # define END(name) \ argument
/bionic/libc/kernel/uapi/linux/netfilter/
Dxt_nfacct.h24 char name[NFACCT_NAME_MAX]; member
28 char name[NFACCT_NAME_MAX]; member
/bionic/libc/arch-x86/string/
Dsse2-wcslen-atom.S46 # define ENTRY(name) \ argument
55 # define END(name) \ argument
/bionic/libc/upstream-openbsd/lib/libc/stdlib/
Dgetenv.c46 __findenv(const char *name, int len, int *offset) in __findenv()
71 getenv(const char *name) in getenv()

12345678910