Searched refs:name (Results 1 - 25 of 381) sorted by relevance

1234567891011>>

/bionic/libc/kernel/uapi/linux/netfilter/
H A Dxt_helper.h5 *** of the same name, to make information necessary for userspace to
23 char name[30]; member in struct:xt_helper_info
H A Dxt_nfacct.h5 *** of the same name, to make information necessary for userspace to
24 char name[NFACCT_NAME_MAX]; member in struct:xt_nfacct_match_info
/bionic/libc/versioner-dependencies/common/kernel_uapi/linux/netfilter/
H A Dxt_helper.h5 *** of the same name, to make information necessary for userspace to
23 char name[30]; member in struct:xt_helper_info
H A Dxt_nfacct.h5 *** of the same name, to make information necessary for userspace to
24 char name[NFACCT_NAME_MAX]; member in struct:xt_nfacct_match_info
/bionic/tools/versioner/dependencies/common/kernel_uapi/linux/netfilter/
H A Dxt_helper.h5 *** of the same name, to make information necessary for userspace to
23 char name[30]; member in struct:xt_helper_info
H A Dxt_nfacct.h5 *** of the same name, to make information necessary for userspace to
24 char name[NFACCT_NAME_MAX]; member in struct:xt_nfacct_match_info
/bionic/tools/versioner/src/
H A DArch.cpp47 Arch arch_from_string(const std::string& name) { argument
48 if (name == "arm") {
50 } else if (name == "arm64") {
52 } else if (name == "mips") {
54 } else if (name == "mips64") {
56 } else if (name == "x86") {
58 } else if (name == "x86_64") {
62 errx(1, "unknown architecture '%s'", name.c_str());
/bionic/libc/bionic/
H A Dgethostname.cpp35 struct utsname name; local
36 if (uname(&name) == -1) {
40 size_t name_length = static_cast<size_t>(strlen(name.nodename) + 1);
46 memcpy(buf, name.nodename, name_length);
H A Dexec.cpp13 * 3. Neither the name of the University nor the names of its contributors
48 static int __execl(const char* name, const char* argv0, ExecVariant variant, va_list ap) { argument
71 return (variant == kIsExecLP) ? execvp(name, argv) : execve(name, argv, argp);
74 int execl(const char* name, const char* arg, ...) { argument
77 int result = __execl(name, arg, kIsExecL, ap);
82 int execle(const char* name, const char* arg, ...) { argument
85 int result = __execl(name, arg, kIsExecLE, ap);
90 int execlp(const char* name, const char* arg, ...) { argument
93 int result = __execl(name, ar
98 execv(const char* name, char* const* argv) argument
102 execvp(const char* name, char* const* argv) argument
117 execvpe(const char* name, char* const* argv, char* const* envp) argument
[all...]
H A Dgetdomainname.cpp34 int getdomainname(char* name, size_t len) { argument
47 strncpy(name, uts.domainname, len);
H A Dsystem_property_api.cpp70 const prop_info* __system_property_find(const char* name) { argument
71 return system_properties.Find(name);
75 int __system_property_read(const prop_info* pi, char* name, char* value) { argument
76 return system_properties.Read(pi, name, value);
81 void (*callback)(void* cookie, const char* name,
88 int __system_property_get(const char* name, char* value) { argument
89 return system_properties.Get(name, value);
98 int __system_property_add(const char* name, unsigned int namelen, const char* value, argument
100 return system_properties.Add(name, namelen, value, valuelen);
80 __system_property_read_callback(const prop_info* pi, void (*callback)(void* cookie, const char* name, const char* value, uint32_t serial), void* cookie) argument
/bionic/libc/kernel/uapi/linux/
H A Duleds.h5 *** of the same name, to make information necessary for userspace to
23 char name[LED_MAX_NAME_SIZE]; member in struct:uleds_user_dev
/bionic/libc/upstream-netbsd/lib/libc/regex/
H A Dcclass.h18 * 3. Neither the name of the University nor the names of its contributors
55 * 4. Neither the name of the University nor the names of its contributors
76 const char *name; member in struct:cclass
H A Dcname.h18 * 3. Neither the name of the University nor the names of its contributors
55 * 4. Neither the name of the University nor the names of its contributors
74 /* character-name table */
76 const char *name; member in struct:cname
/bionic/libc/versioner-dependencies/common/kernel_uapi/linux/
H A Duleds.h5 *** of the same name, to make information necessary for userspace to
23 char name[LED_MAX_NAME_SIZE]; member in struct:uleds_user_dev
/bionic/tools/versioner/dependencies/common/kernel_uapi/linux/
H A Duleds.h5 *** of the same name, to make information necessary for userspace to
23 char name[LED_MAX_NAME_SIZE]; member in struct:uleds_user_dev
/bionic/libc/private/
H A Dthread_private.h22 #define __THREAD_NAME(name) __CONCAT(_thread_tagname_,name)
29 #define _THREAD_PRIVATE_MUTEX(name) \
30 static struct __thread_private_tag_t __THREAD_NAME(name) = { PTHREAD_MUTEX_INITIALIZER, -1 }
31 #define _THREAD_PRIVATE_MUTEX_LOCK(name) \
32 pthread_mutex_lock( &__THREAD_NAME(name)._private_lock )
33 #define _THREAD_PRIVATE_MUTEX_UNLOCK(name) \
34 pthread_mutex_unlock( &__THREAD_NAME(name)._private_lock )
/bionic/libc/system_properties/
H A Dprop_info.cpp38 prop_info::prop_info(const char* name, uint32_t namelen, const char* value, uint32_t valuelen) { argument
39 memcpy(this->name, name, namelen);
40 this->name[namelen] = '\0';
46 prop_info::prop_info(const char* name, uint32_t namelen, uint32_t long_offset) { argument
47 memcpy(this->name, name, namelen);
48 this->name[namelen] = '\0';
/bionic/libc/upstream-openbsd/lib/libc/stdlib/
H A Dgetenv.c14 * 3. Neither the name of the University nor the names of its contributors
34 char *__findenv(const char *name, int len, int *offset);
38 * Returns pointer to value associated with name, if any, else NULL.
40 * Sets offset to be the offset of the name/value combination in the
42 * Explicitly removes '=' in argument name.
47 __findenv(const char *name, int len, int *offset) argument
54 if (name == NULL || environ == NULL)
57 for (np = name, i = len; i && *cp; i--)
70 * Returns ptr to value associated with name, if any, else NULL.
73 getenv(const char *name) argument
[all...]
H A Dsetenv.c14 * 3. Neither the name of the University nor the names of its contributors
40 * Add a name=value string directly to the environmental, replacing
86 * Set the value of the environmental variable "name" to be
90 setenv(const char *name, const char *value, int rewrite) argument
96 if (!name || !*name) {
100 for (np = name; *np && *np != '='; ++np)
104 return (-1); /* has `=' in name */
108 if ((C = __findenv(name, (int)(np - name),
156 unsetenv(const char *name) argument
[all...]
/bionic/libc/kernel/uapi/sound/
H A Dtlv.h5 *** of the same name, to make information necessary for userspace to
33 #define SNDRV_CTL_TLVD_DECLARE_CONTAINER(name,...) unsigned int name[] = { SNDRV_CTL_TLVD_CONTAINER_ITEM(__VA_ARGS__) }
37 #define SNDRV_CTL_TLVD_DECLARE_DB_SCALE(name,min,step,mute) unsigned int name[] = { SNDRV_CTL_TLVD_DB_SCALE_ITEM(min, step, mute) }
40 #define SNDRV_CTL_TLVD_DECLARE_DB_MINMAX(name,min_dB,max_dB) unsigned int name[] = { SNDRV_CTL_TLVD_DB_MINMAX_ITEM(min_dB, max_dB) }
41 #define SNDRV_CTL_TLVD_DECLARE_DB_MINMAX_MUTE(name,min_dB,max_dB) unsigned int name[] = { SNDRV_CTL_TLVD_DB_MINMAX_MUTE_ITEM(min_dB, max_dB) }
43 #define SNDRV_CTL_TLVD_DECLARE_DB_LINEAR(name,min_d
[all...]
/bionic/libc/versioner-dependencies/common/kernel_uapi/sound/
H A Dtlv.h5 *** of the same name, to make information necessary for userspace to
33 #define SNDRV_CTL_TLVD_DECLARE_CONTAINER(name,...) unsigned int name[] = { SNDRV_CTL_TLVD_CONTAINER_ITEM(__VA_ARGS__) }
37 #define SNDRV_CTL_TLVD_DECLARE_DB_SCALE(name,min,step,mute) unsigned int name[] = { SNDRV_CTL_TLVD_DB_SCALE_ITEM(min, step, mute) }
40 #define SNDRV_CTL_TLVD_DECLARE_DB_MINMAX(name,min_dB,max_dB) unsigned int name[] = { SNDRV_CTL_TLVD_DB_MINMAX_ITEM(min_dB, max_dB) }
41 #define SNDRV_CTL_TLVD_DECLARE_DB_MINMAX_MUTE(name,min_dB,max_dB) unsigned int name[] = { SNDRV_CTL_TLVD_DB_MINMAX_MUTE_ITEM(min_dB, max_dB) }
43 #define SNDRV_CTL_TLVD_DECLARE_DB_LINEAR(name,min_d
[all...]
/bionic/tools/versioner/dependencies/common/kernel_uapi/sound/
H A Dtlv.h5 *** of the same name, to make information necessary for userspace to
33 #define SNDRV_CTL_TLVD_DECLARE_CONTAINER(name,...) unsigned int name[] = { SNDRV_CTL_TLVD_CONTAINER_ITEM(__VA_ARGS__) }
37 #define SNDRV_CTL_TLVD_DECLARE_DB_SCALE(name,min,step,mute) unsigned int name[] = { SNDRV_CTL_TLVD_DB_SCALE_ITEM(min, step, mute) }
40 #define SNDRV_CTL_TLVD_DECLARE_DB_MINMAX(name,min_dB,max_dB) unsigned int name[] = { SNDRV_CTL_TLVD_DB_MINMAX_ITEM(min_dB, max_dB) }
41 #define SNDRV_CTL_TLVD_DECLARE_DB_MINMAX_MUTE(name,min_dB,max_dB) unsigned int name[] = { SNDRV_CTL_TLVD_DB_MINMAX_MUTE_ITEM(min_dB, max_dB) }
43 #define SNDRV_CTL_TLVD_DECLARE_DB_LINEAR(name,min_d
[all...]
/bionic/libc/upstream-openbsd/lib/libc/stdio/
H A Dtempnam.c14 * 3. Neither the name of the University nor the names of its contributors
46 char *f, *name; local
48 if (!(name = malloc(PATH_MAX)))
55 len = snprintf(name, PATH_MAX, "%s%s%sXXXXXXXXXX", f,
61 if ((f = _mktemp(name)))
67 len = snprintf(name, PATH_MAX, "%s%s%sXXXXXXXXXX", f,
73 if ((f = _mktemp(name)))
78 len = snprintf(name, PATH_MAX, "%s%sXXXXXXXXX", f, pfx);
83 if ((f = _mktemp(name)))
87 len = snprintf(name, PATH_MA
[all...]
/bionic/libc/arch-x86_64/string/
H A Dsse2-strcat-slm.S15 * Neither the name of Intel Corporation nor the names of its contributors
48 # define ENTRY(name) \
49 .type name, @function; \
50 .globl name; \
52 name: \ label
57 # define END(name) \
59 .size name, .-name

Completed in 220 milliseconds

1234567891011>>