HomeSort by relevance Sort by last modified time
    Searched defs:base (Results 501 - 525 of 5760) sorted by null

<<21222324252627282930>>

  /system/core/base/
quick_exit.cpp 17 #include "android-base/quick_exit.h"
25 namespace base { namespace in namespace:android
44 } // namespace base
  /system/core/init/
host_init_stubs.h 32 // android-base/properties.h
34 namespace base { namespace in namespace:android
44 } // namespace base
  /toolchain/binutils/binutils-2.27/libiberty/
basename.c 45 const char *base; local
53 for (base = name; *name; name++)
57 base = name + 1;
60 return (char *) base;
choose-temp.c 62 const char *base = choose_tmpdir (); local
66 len = strlen (base);
68 strcpy (temp_filename, base);
  /bootable/recovery/boot_control/
boot_control.cpp 24 #include <android-base/file.h>
25 #include <android-base/logging.h>
26 #include <android-base/properties.h>
27 #include <android-base/stringprintf.h>
28 #include <android-base/unique_fd.h>
35 // The base struct needs to be first in the list.
36 boot_control_module_t base; member in struct:boot_control_private_t
95 android::base::unique_fd fd(open(misc_device, O_RDONLY));
104 if (!android::base::ReadFully(fd.get(), buffer, sizeof(bootloader_control))) {
113 android::base::unique_fd fd(open(misc_device, O_WRONLY | O_SYNC))
    [all...]
  /cts/common/device-side/util/src/com/android/compatibility/common/util/
BeforeAfterRule.java 28 public Statement apply(Statement base, Description description) {
33 onBefore(base, description);
35 base.evaluate();
37 onAfter(base, description);
43 protected void onBefore(Statement base, Description description) throws Throwable {
46 protected void onAfter(Statement base, Description description) throws Throwable {
  /cts/tests/autofillservice/src/android/autofillservice/cts/common/
StateKeeperRule.java 21 import com.google.common.base.Preconditions;
48 public Statement apply(Statement base, Description description) {
55 base.evaluate();
  /cts/tests/signature/src/android/signature/cts/
ExcludingClassProvider.java 25 private final ClassProvider base; field in class:ExcludingClassProvider
28 public ExcludingClassProvider(ClassProvider base,
30 this.base = base;
37 return base.getClass(name);
45 return base.getAllClasses()
51 return base.getAllMembers(klass);
  /cts/tests/tests/location/src/android/location/cts/asn1/base/
ChoiceComponent.java 17 package android.location.cts.asn1.base;
  /device/google/cuttlefish_common/guest/hals/gralloc/legacy/
mapper.cpp 83 void* base = reference_region("gralloc_lock", hnd); local
84 *vaddr = reinterpret_cast<unsigned char*>(base)
121 void* base = reference_region("gralloc_lock_ycbcr", hnd); local
122 formatToYcbcr(hnd->format, hnd->x_res, hnd->y_res, base, ycbcr);
  /device/google/cuttlefish_common/guest/hals/power/
power.c 31 struct power_module base; member in struct:vsoc_power_module
76 * prior: frameworks/base/services/core/jni/com_android_server_power_PowerManagerService.cpp
84 VSOC_STATIC_INITIALIZER(base) {
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
memoryobject.h 19 PyAPI_FUNC(PyObject *) PyMemoryView_GetContiguous(PyObject *base,
25 base object for the memory view will be a *new* bytes object.
27 Otherwise, the base-object will be the object itself and no
54 PyAPI_FUNC(PyObject *) PyMemoryView_FromObject(PyObject *base); variable
58 will be a new bytesobject in base */
66 PyObject *base; member in struct:__anon4342
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
memoryobject.h 19 PyAPI_FUNC(PyObject *) PyMemoryView_GetContiguous(PyObject *base,
25 base object for the memory view will be a *new* bytes object.
27 Otherwise, the base-object will be the object itself and no
54 PyAPI_FUNC(PyObject *) PyMemoryView_FromObject(PyObject *base); variable
58 will be a new bytesobject in base */
66 PyObject *base; member in struct:__anon4649
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
testcapi_long.h 14 unsigned TYPENAME base; local
25 base = 1;
27 i < NBITS + 1; /* on last, base overflows to 0 */
28 ++i, base <<= 1)
35 /* For 0, 1, 2 use base; for 3, 4, 5 use -base */
36 uin = j < 3 ? base
37 : (unsigned TYPENAME)(-(TYPENAME)base);
  /device/linaro/bootloader/edk2/StdLib/LibC/NetUtil/
inet_addr.c 130 int base, n; local
145 val = 0; base = 10; digit = 0;
149 base = 16, c = *++cp;
151 base = 8;
157 if (base == 8 && (c == '8' || c == '9'))
159 val = (val * base) + (c - '0');
162 } else if (base == 16 && isascii(c) &&
inet_network.c 72 int digit, base; local
77 val = 0; base = 10; digit = 0;
79 digit = 1, base = 8, cp++;
81 base = 16, cp++;
84 if (base == 8 && (c == '8' || c == '9'))
86 val = (val * base) + (c - '0');
91 if (base == 16 && isxdigit(c)) {
  /device/linaro/hikey/gralloc960/
gralloc_module_ion.cpp 85 hnd->base = (void*)(uintptr_t(mappedAddress) + hnd->offset);
98 void* base = (void*)hnd->base; local
101 if ( munmap( base,size ) < 0 )
103 AERR("Could not munmap base:%p size:%zd '%s'", base, size, strerror(errno));
  /external/clang/test/FixIt/
fixit-cxx11-attributes.cpp 18 class base {}; class in namespace:ClassSpecifier
21 alignas(float) [[]] [[]] alignas(float): base{}; // expected-error {{an attribute list cannot appear here}}
  /external/e2fsprogs/lib/et/
com_err.h 26 long base; member in struct:error_table
45 extern int init_error_table(const char * const *msgs, long base, int count);
59 long base);
  /external/e2fsprogs/misc/
base_device.c 4 * Return the "base device" given a particular device; this is used to
7 * place. If the base device can not be determined, return NULL.
153 const char *base; local
165 base = base_device(buf);
166 printf("%s\t%s\n", buf, base ? base : "NONE");
  /external/elfutils/tests/
dwarf-ranges.c 42 Dwarf_Addr base, start, end; local
44 (off = dwarf_ranges (cudie, off, &base, &start, &end)); )
51 fprintf (stderr, "%"PRIx64"..%"PRIx64" (base %"PRIx64")\n",
52 start, end, base);
dwfl-report-elf-align.c 1 /* Test program for dwfl_report_elf incorrect BASE alignment.
47 error (1, 0, "dwfl-report-elf-align shlib.so base funcaddr funcname");
53 uintptr_t base = strtoull (argv[2], &endptr, 0); local
56 Dwfl_Module *mod = dwfl_report_elf (dwfl, argv[1], argv[1], -1, base, false);
  /external/freetype/src/gzip/
inftrees.h 27 uInt base; /* literal, length base, distance base, member in struct:inflate_huft_s
  /external/guava/guava/src/com/google/common/base/
FinalizablePhantomReference.java 17 package com.google.common.base;
FinalizableSoftReference.java 17 package com.google.common.base;

Completed in 1095 milliseconds

<<21222324252627282930>>