/bionic/tests/ |
D | system_properties_test.cpp | 97 ASSERT_EQ(0, system_properties.Add("property", 8, "value1", 6)); in TEST() 98 ASSERT_EQ(0, system_properties.Add("other_property", 14, "value2", 6)); in TEST() 99 ASSERT_EQ(0, system_properties.Add("property_other", 14, "value3", 6)); in TEST() 109 ASSERT_EQ(0, system_properties.Add(name, strlen(name), "value", 5)); in TEST() 133 ASSERT_EQ(0, system_properties.Add("property", 8, "oldvalue1", 9)); in TEST() 134 ASSERT_EQ(0, system_properties.Add("other_property", 14, "value2", 6)); in TEST() 135 ASSERT_EQ(0, system_properties.Add("property_other", 14, "value3", 6)); in TEST() 182 ret = system_properties.Add(prop_name, PROP_NAME_MAX - 1, prop_value, PROP_VALUE_MAX - 1); in TEST() 214 ASSERT_EQ(0, system_properties.Add("property", 8, "value1", 6)); in TEST() 215 ASSERT_EQ(0, system_properties.Add("other_property", 14, "value2", 6)); in TEST() [all …]
|
/bionic/libc/bionic/ |
D | scandir.cpp | 52 bool Add(dirent* entry) { in Add() function in ScandirResult 121 names.Add(entry); in scandirat()
|
D | system_property_api.cpp | 98 return system_properties.Add(name, namelen, value, valuelen); in __system_property_add()
|
/bionic/libc/malloc_debug/ |
D | malloc_debug.cpp | 456 PointerData::Add(pointer, size); in InternalMalloc() 627 PointerData::Add(pointer, bytes); in debug_memalign() 698 PointerData::Add(pointer, real_size); in debug_realloc() 716 PointerData::Add(pointer, real_size); in debug_realloc() 743 PointerData::Add(new_pointer, real_size); in debug_realloc() 815 PointerData::Add(pointer, size); in debug_calloc()
|
D | PointerData.h | 140 static void Add(const void* pointer, size_t size);
|
D | PointerData.cpp | 196 void PointerData::Add(const void* ptr, size_t pointer_size) { in Add() function in PointerData
|
D | README.md | 189 Add an extra amount to allocate for every allocation.
|
/bionic/linker/ |
D | linker_cfi.h | 61 void Add(uintptr_t begin, uintptr_t end, uintptr_t cfi_check);
|
D | linker_cfi.cpp | 101 void CFIShadowWriter::Add(uintptr_t begin, uintptr_t end, uintptr_t cfi_check) { in Add() function in CFIShadowWriter 190 Add(si->base, si->base + si->size, cfi_check); in AddLibrary()
|
/bionic/libc/system_properties/include/system_properties/ |
D | system_properties.h | 68 int Add(const char* name, unsigned int namelen, const char* value, unsigned int valuelen);
|
/bionic/ |
D | README.md | 161 1. Add entries to SYSCALLS.TXT. 163 2. Add constants (and perhaps types) to the appropriate header file. 168 3. Add function declarations to the appropriate header file. Don't forget 170 4. Add the function name to the correct section in libc/libc.map.txt. 171 5. Add at least basic tests. Even a test that deliberately supplies
|
/bionic/benchmarks/ |
D | property_benchmark.cpp | 83 if (system_properties_.Add(names[i], name_lens[i], values[i], value_lens[i]) < 0) { in LocalPropertyTestState()
|
/bionic/libc/system_properties/ |
D | system_properties.cpp | 273 int SystemProperties::Add(const char* name, unsigned int namelen, const char* value, in Add() function in SystemProperties
|
/bionic/docs/ |
D | elf-tls.md | 431 * Add the module-relative offset to the module pointer. 733 * Add a `PT_ANDROID_TLS_TPOFF` segment? 734 * Add a [`.note.gnu.property`](https://reviews.llvm.org/D53906#1283425) with a 747 Add an lld option: `--android-tls[-tcb=SIZE]`
|