HomeSort by relevance Sort by last modified time
    Searched defs:name (Results 126 - 150 of 12087) sorted by null

1 2 3 4 56 7 8 91011>>

  /toolchain/binutils/binutils-2.25/libiberty/
putenv.c 25 @samp{name=value} the string is added; if no @samp{=} is present the
26 name is unset/removed.
68 /* Put STRING, which is of the form "NAME=VALUE", in the environment. */
76 char *name = (char *) alloca (name_end - string + 1); local
77 memcpy (name, string, name_end - string);
78 name[name_end - string] = '\0';
79 return setenv (name, name_end + 1, 1);
  /packages/apps/Email/tests/src/com/android/emailcommon/mail/
FlagTests.java 37 String name = flag.name(); local
38 assertEquals(name.toUpperCase(), name); local
  /bionic/libc/arch-x86_64/string/
sse2-strcat-slm.S 15 * 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
sse2-strcpy-slm.S 15 * Neither the name of Intel Corporation nor the names of its contributors
50 # define ENTRY(name) \
51 .type name, @function; \
52 .globl name; \
54 name: \ label
59 # define END(name) \
61 .size name, .-name
    [all...]
sse4-memcmp-slm.S 15 * Neither the name of Intel Corporation nor the names of its contributors
54 # define ENTRY(name) \
55 .type name, @function; \
56 .globl name; \
58 name: \ label
63 # define END(name) \
65 .size name, .-name
    [all...]
ssse3-strcmp-slm.S 15 * Neither the name of Intel Corporation nor the names of its contributors
63 # define ENTRY(name) \
64 .type name, @function; \
65 .globl name; \
67 name: \ label
72 # define END(name) \
74 .size name, .-name
    [all...]
  /bionic/libc/upstream-netbsd/lib/libc/regex/
cclass.h 18 * 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
  /bionic/libc/upstream-openbsd/lib/libc/gen/
charclass.h 11 const char *name; member in struct:cclass
  /bionic/libc/upstream-openbsd/lib/libc/stdio/
tempnam.c 14 * 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_MAX, "%s%sXXXXXXXXX", f, pfx)
    [all...]
  /cts/tests/tests/os/jni/
android_os_cts_HardwareName.cpp 23 char name[PROP_VALUE_MAX]; local
25 if (__system_property_get("ro.boot.hardware", name) <= 0) {
29 return env->NewStringUTF(name);
  /device/generic/goldfish/opengl/system/egl/
egl_ftable.h 17 const char *name; member in struct:_egl_funcs_by_name
  /device/generic/goldfish/opengl/tests/gles_android_wrapper/
egl_ftable.h 17 const char *name; member in struct:_egl_funcs_by_name
gles_ftable.h 17 const char *name; member in struct:_gles_funcs_by_name
  /external/autotest/client/site_tests/kernel_PerfEventRename/src/
perf-rename-test.c 26 char *name; local
29 fprintf(stderr, "usage: <name> <loops>\n");
33 name = argv[1];
36 if (prctl(PR_SET_NAME, name) < 0) {
  /external/chromium-trace/catapult/telemetry/telemetry/internal/platform/
device.py 12 name: A device name string in human-understandable term.
18 def __init__(self, name, guid):
19 self._name = name
23 def name(self): member in class:Device
  /external/chromium-trace/catapult/telemetry/third_party/modulegraph/modulegraph_tests/testdata/nspkg/src/child/
setup.py 4 name="nameduser", variable
  /external/chromium-trace/catapult/telemetry/third_party/modulegraph/modulegraph_tests/testdata/nspkg/src/parent/
setup.py 4 name="namedpkg", variable
  /external/chromium-trace/catapult/telemetry/third_party/webpagereplay/third_party/dns/
tsigkeyring.py 20 import dns.name namespace
23 """Convert a dictionary containing (textual DNS name, base64 secret) pairs
24 into a binary keyring which has (dns.name.Name, binary secret) pairs.
29 keyname = dns.name.from_text(keytext)
35 """Convert a dictionary containing (dns.name.Name, binary secret) pairs
36 into a text keyring which has (textual DNS name, base64 secret) pairs.
41 keytext = dns.name.to_text(keyname)
  /external/clang/test/CodeGen/
2007-04-24-str-const.c 5 const char *name; member in struct:__anon8023
  /external/clang/test/CodeGenCXX/
member-data-pointers.cpp 7 const char *name; member in struct:__anon8451
  /external/elfutils/libdw/
dwarf_getabbrevattr.c 49 unsigned int name; local
58 get_uleb128 (name, attrp, attrp + len_leb128 (name));
62 if (name == 0 && form == 0)
69 *namep = name;
  /external/elfutils/libelf/
dl-hash.h 30 const unsigned char *name = (const unsigned char *) name_arg; local
31 unsigned long int hash = *name;
32 if (hash != 0 && name[1] != '\0')
34 hash = (hash << 4) + name[1];
35 if (name[2] != '\0')
37 hash = (hash << 4) + name[2];
38 if (name[3] != '\0')
40 hash = (hash << 4) + name[3];
41 if (name[4] != '\0')
43 hash = (hash << 4) + name[4]
    [all...]
  /external/elfutils/tests/
newscn.c 42 char name[] = "test.XXXXXX"; local
43 fd = mkstemp (name);
46 fprintf (stderr, "Failed to open fdput file: %s\n", name);
49 unlink (name);
54 fprintf (stderr, "Failed to elf_begin fdput file: %s\n", name);
  /external/icu/icu4c/source/common/
ucnvdisp.c 14 * Date Name Description
39 const UChar *name; local
53 /* open the resource bundle and get the display name string */
59 /* use the internal name as the key */
60 name=ures_getStringByKey(rb, cnv->sharedData->staticData->name, &length, &localStatus);
68 u_memcpy(displayName, name, uprv_min(length, displayNameCapacity)*U_SIZEOF_UCHAR);
70 /* convert the internal name into a Unicode string */
71 length=(int32_t)uprv_strlen(cnv->sharedData->staticData->name);
72 u_charsToUChars(cnv->sharedData->staticData->name, displayName, uprv_min(length, displayNameCapacity))
    [all...]
  /external/iptables/include/linux/netfilter/
xt_nfacct.h 13 char name[NFACCT_NAME_MAX]; member in struct:xt_nfacct_match_info

Completed in 1514 milliseconds

1 2 3 4 56 7 8 91011>>