Searched refs:stack (Results 1 – 16 of 16) sorted by relevance
/tools/repohooks/tools/ |
D | cpplint.py | 1520 def FindEndOfExpressionInLine(line, startpos, stack): argument 1537 stack.append(char) 1542 if stack and stack[-1] == '<': 1543 stack.pop() 1544 if not stack: 1551 stack.append('<') 1557 while stack and stack[-1] == '<': 1558 stack.pop() 1559 if not stack: 1561 if ((stack[-1] == '(' and char == ')') or [all …]
|
D | checkpatch.pl | 1318 my @stack = (); 1325 @stack = (['', 0]) if ($#stack == -1); 1359 push(@stack, [ $type, $level ]); 1361 ($type, $level) = @{$stack[$#stack - 1]}; 1363 ($type, $level) = @{pop(@stack)}; 1522 my @stack = ($level); 1531 push(@stack, $level); 1533 $level = $stack[$#stack - 1]; 1535 $level = pop(@stack);
|
/tools/trebuchet/core/common/src/main/kotlin/trebuchet/util/ |
D | Builders.kt | 27 private val stack = mutableListOf<P>() in noReset() constant 35 stack.add(p) in noReset() 40 if (stack.isEmpty()) return null in noReset() 41 val p = stack.removeAt(stack.lastIndex) in noReset()
|
/tools/security/sanitizer-status/ |
D | sanitizer-status.cpp | 54 volatile char stack[32]; in test_crash_stack() local 55 volatile char* p_stack = stack; in test_crash_stack() 78 volatile int stack[10]; in test_msan_crash_stack() local 79 stack[5] = 0; in test_msan_crash_stack() 80 if (stack[0]) { // NOLINT in test_msan_crash_stack() 81 stack[0] = 1; in test_msan_crash_stack()
|
/tools/security/fuzzing/example_fuzzer/ |
D | README.md | 37 - a stack-buffer-overflow is caught by AddressSanitizer 53 ==32069==ERROR: AddressSanitizer: stack-buffer-overflow on address 0x007fe3caf8c3 at pc 0x007891974… 65 Address 0x007fe3caf8c3 is located in stack of thread T0 at offset 35 in frame 71 HINT: this may be a false positive if your program uses some custom stack unwind mechanism, swapcon… 73 SUMMARY: AddressSanitizer: stack-buffer-overflow (/system/lib64/libclang_rt.asan-aarch64-android.so…
|
/tools/metalava/src/main/java/com/android/tools/metalava/ |
D | ComparisonVisitor.kt | 517 val stack = Stack<ItemTree>() in createTree() constant 519 stack.push(root) in createTree() 540 val parent = stack.peek() in createTree() 543 stack.push(node) in createTree() 552 stack.pop() in createTree()
|
/tools/test/graphicsbenchmark/performance_tests/hostside/src/com/android/game/qualification/reporter/ |
D | GameQualificationResultReporter.java | 372 String stack = testResult.getStackTrace(); in getTestSummary() local 373 if (stack != null && !stack.isEmpty()) { in getTestSummary() 375 String lines[] = stack.split("\\r?\\n"); in getTestSummary()
|
/tools/metalava/src/main/java/com/android/tools/metalava/model/psi/ |
D | PsiTypePrinter.kt | 458 var stack = 0 in <lambda>() variable 461 '<' -> stack-- in <lambda>() 462 '>' -> stack++ in <lambda>() 463 '.' -> if (stack == 0) return ref.substring(0, i) in <lambda>()
|
/tools/test/connectivity/acts_tests/acts_contrib/test_utils/bt/protos/ |
D | bluetooth.proto | 77 // https://cs.corp.google.com/#android/system/bt/stack/include/btm_api.h&q=major_computer. 180 // See: system/bt/stack/include/hcidefs.h, HCI_ERR_CONN_FAILED_ESTABLISHMENT
|
/tools/test/connectivity/acts/framework/acts/ |
D | tracelogger.py | 28 inspect_stack = inspect.stack()
|
/tools/test/connectivity/acts_tests/tests/google/bt/pts/instructions/ |
D | GAP_PTS_INSTRUCTIONS | 17 Note: Use this stack change to test all LE testcases: 18 https://android-review.googlesource.com/#/c/319838/1/stack/btm/btm_ble_multi_adv.cc TSPC_bd_addr_iu…
|
D | SM_PTS_INSTRUCTIONS | 205 3. Add this patch to the stack which adds even more logging:
|
/tools/test/connectivity/acts/framework/acts/libs/ |
D | version_selector.py | 45 return [_FrameInfo(*info) for info in inspect.stack()]
|
/tools/apksig/etc/ |
D | apksigner.bat | 71 REM By default, give apksigner a max heap size of 1 gig and a stack size of 1meg.
|
/tools/treble/build/sandbox/ |
D | nsjail.cfg | 24 # Maximum stack size
|
/tools/test/connectivity/acts/ |
D | README.md | 7 tool for a wireless stack developer or integrator whether exercising a new code
|