/system/extras/simpleperf/inferno/ |
D | script.js | 11 stack = []; 12 svgElement.zoomStack = stack; 13 stack.push(svgElement.getElementById(svgElement.attributes["rootid"].value)) 19 stack = svgElement.zoomStack; 20 for (i=0 ; i < stack.length; i++) { 21 title = stack[i].getElementsByTagName("title")[0]; 126 stack = svgOwner.zoomStack; 134 if (stack.length > 1) { 135 previouslySelected = stack.pop(); 138 nextElement = stack[stack.length-1] // stack.peek() [all …]
|
/system/bt/main/ |
D | BUILD.gn | 40 "//stack/include", 41 "//stack/l2cap", 42 "//stack/a2dp", 43 "//stack/btm", 44 "//stack/avdt", 67 "//stack",
|
D | Android.bp | 23 "system/bt/stack/include", 24 "system/bt/stack/l2cap", 25 "system/bt/stack/a2dp", 26 "system/bt/stack/btm", 27 "system/bt/stack/avdt", 64 "libbt-stack",
|
/system/bt/doc/ |
D | directory_layout.md | 21 * main - *Main stack entrypoint* - Provides HAL for stack access. 22 * osi - *Operating System Interface* - General resource support for stack. 24 * stack - **Deprecated** - The Stack - Push to proper spot in *./profiles* 29 * vnd - *Vendor* - Vendor specific APIs - *to be integrated into rest of stack ?*.
|
D | btsnoop_net.md | 7 Once it has been enabled and the stack restarted, the stack will listen for
|
D | network_ports.md | 3 This document lists all of the network ports used by the bluetooth stack.
|
/system/core/libbacktrace/ |
D | BacktraceOffline.h | 47 BacktraceOffline(pid_t pid, pid_t tid, BacktraceMap* map, const backtrace_stackinfo_t& stack, in BacktraceOffline() argument 52 stack_space_.start = stack.start; in BacktraceOffline() 53 stack_space_.end = stack.end; in BacktraceOffline() 54 stack_space_.data = stack.data; in BacktraceOffline()
|
D | backtrace_offline_test.cpp | 136 void* stack = mmap(NULL, stack_size, PROT_READ | PROT_WRITE, MAP_PRIVATE | MAP_ANONYMOUS, -1, 0); in TEST() local 137 ASSERT_NE(MAP_FAILED, stack); in TEST() 138 uintptr_t stack_addr = reinterpret_cast<uintptr_t>(stack); in TEST() 141 ASSERT_EQ(0, pthread_attr_setstack(&attr, reinterpret_cast<void*>(stack), stack_size)); in TEST() 149 std::vector<uint8_t> stack_data(reinterpret_cast<uint8_t*>(stack), in TEST() 150 reinterpret_cast<uint8_t*>(stack) + stack_size); in TEST() 153 ASSERT_EQ(0, munmap(stack, stack_size)); in TEST() 229 std::vector<uint8_t> stack; member 267 testdata->stack.resize(size); in ReadOfflineTestData() 268 HexStringToRawData(&line[pos], &testdata->stack[0], size); in ReadOfflineTestData() [all …]
|
/system/bt/btif/ |
D | Android.bp | 11 "system/bt/stack/include", 12 "system/bt/stack/l2cap", 13 "system/bt/stack/a2dp", 14 "system/bt/stack/btm", 15 "system/bt/stack/avdt", 117 "libbt-stack",
|
D | BUILD.gn | 89 "//stack/a2dp", 90 "//stack/btm", 91 "//stack/include",
|
/system/extras/perfprofd/ |
D | perf_profile.proto | 10 // An entry of the map from a stack of addresses to count. 14 // List of addresses that represents a call stack. 15 // address[0] is the leaf of the call stack. 18 // List of load_module_ids that represents a call stack. 19 // load_module_id[0] is the leaf of the call stack. 56 // Map from a stack of addresses to count.
|
/system/bt/stack/ |
D | Android.bp | 1 // Bluetooth stack static library for target 4 name: "libbt-stack", 186 // Bluetooth stack unit tests for target 204 "libbt-stack", 211 // Bluetooth stack smp unit tests for target 248 // Bluetooth stack multi-advertising unit tests for target 279 // Bluetooth stack advertise data parsing unit tests for target 297 // Bluetooth stack message loop tests for target
|
D | BUILD.gn | 17 static_library("stack") { 204 "//stack/a2dp", 205 "//stack/btm", 206 "//stack/include", 223 ":stack", 249 "//stack/btm",
|
/system/core/debuggerd/handler/ |
D | debuggerd_handler.cpp | 517 char* stack = static_cast<char*>(thread_stack_allocation) + PAGE_SIZE; in debuggerd_init() local 518 if (mprotect(stack, PAGE_SIZE, PROT_READ | PROT_WRITE) != 0) { in debuggerd_init() 523 stack = (stack + PAGE_SIZE - 1); in debuggerd_init() 525 stack -= 15; in debuggerd_init() 526 pseudothread_stack = stack; in debuggerd_init()
|
/system/bt/hci/ |
D | Android.bp | 36 "system/bt/stack/include", 57 "system/bt/stack/include",
|
D | BUILD.gn | 37 "//stack/include", 59 "//stack/include",
|
/system/core/libutils/ |
D | RefBase.cpp | 187 refs->stack.log(LOG_TAG); in ~weakref_impl() 201 refs->stack.log(LOG_TAG); in ~weakref_impl() 208 CallStack stack(LOG_TAG); in ~weakref_impl() local 297 CallStack stack; member 314 ref->stack.update(2); in addRef() 349 CallStack stack(LOG_TAG); in removeRef() local 376 out->append(refs->stack.toString("\t\t")); in printRefsLocked()
|
/system/bt/vendor_libs/test_vendor_lib/ |
D | Android.bp | 35 "system/bt/stack/include", 73 "system/bt/stack/include",
|
/system/bt/ |
D | Android.bp | 9 "stack",
|
/system/extras/simpleperf/ |
D | dwarf_unwind.h | 31 const char* stack, size_t stack_size, bool strict_arch_check);
|
/system/chre/host/msm/daemon/generated/ |
D | chre_slpi_skel.c | 179 uint8_t* stack; member 212 if((_ALIGN_SIZE((uintptr_t)me->stackEnd, al) + size) < (uintptr_t)me->stack + me->nSize) { in _allocator_alloc() 234 static __inline void _allocator_init(_allocator* me, uint8_t* stack, int stackSize) { in _allocator_init() argument 235 me->stack = stack; in _allocator_init() 236 me->stackEnd = stack + stackSize; in _allocator_init()
|
D | chre_slpi_stub.c | 179 uint8_t* stack; member 212 if((_ALIGN_SIZE((uintptr_t)me->stackEnd, al) + size) < (uintptr_t)me->stack + me->nSize) { in _allocator_alloc() 234 static __inline void _allocator_init(_allocator* me, uint8_t* stack, int stackSize) { in _allocator_init() argument 235 me->stack = stack; in _allocator_init() 236 me->stackEnd = stack + stackSize; in _allocator_init()
|
/system/bt/utils/ |
D | Android.bp | 12 "system/bt/stack/include",
|
/system/bt/udrv/ |
D | Android.bp | 11 "system/bt/stack/include",
|
/system/bt/embdrv/sbc/encoder/ |
D | Android.bp | 21 "system/bt/stack/include",
|