/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/opsworks/ |
D | layer1.py | 478 def create_app(self, stack_id, name, type, shortname=None, argument 543 params = {'StackId': stack_id, 'Name': name, 'Type': type, } 565 def create_deployment(self, stack_id, command, app_id=None, argument 605 params = {'StackId': stack_id, 'Command': command, } 617 def create_instance(self, stack_id, layer_ids, instance_type, argument 726 'StackId': stack_id, 757 def create_layer(self, stack_id, type, name, shortname, attributes=None, argument 867 'StackId': stack_id, 1237 def delete_stack(self, stack_id): argument 1253 params = {'StackId': stack_id, } [all …]
|
/external/chromium-trace/catapult/systrace/profile_chrome/third_party/ |
D | perf_to_tracing.py | 74 def __init__(self, stack_id, name, category): argument 75 self.stack_id = stack_id 86 if self.stack_id: 93 out_dict[self.stack_id] = node_dict 113 def __init__(self, stack_id, ts, cpu, tid, weight, samp_type, comm): argument 114 self.stack_id = stack_id 130 assert self.stack_id != 0 131 if self.stack_id: 132 ret['sf'] = self.stack_id # Stack frame id 187 new_node.parent_id = stack_frame.stack_id [all …]
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/cloudformation/ |
D | stack.py | 17 self.stack_id = None 56 self.stack_id = value 71 return self.connection.delete_stack(stack_name_or_id=self.stack_id) 75 stack_name_or_id=self.stack_id, 81 stack_name_or_id=self.stack_id, 88 stack_name_or_id=self.stack_id, 95 stack_name_or_id=self.stack_id, 100 rs = self.connection.describe_stacks(self.stack_id) 101 if len(rs) == 1 and rs[0].stack_id == self.stack_id: 105 self.stack_id) [all …]
|
/external/compiler-rt/lib/msan/ |
D | msan_origin.h | 89 u32 stack_id = ChainedOriginDepotGet(getChainedId(), &prev_id); in getNextChainedOrigin() local 90 if (stack) *stack = StackDepotGet(stack_id); in getNextChainedOrigin() 104 u32 stack_id = StackDepotPut(*stack); in CreateHeapOrigin() local 105 CHECK(stack_id); in CreateHeapOrigin() 106 CHECK((stack_id & kHeapIdMask) == stack_id); in CreateHeapOrigin() 107 return Origin(stack_id); in CreateHeapOrigin()
|
/external/compiler-rt/lib/lsan/ |
D | lsan_common_linux.cc | 91 static uptr GetCallerPC(u32 stack_id, StackDepotReverseMap *map) { in GetCallerPC() argument 92 CHECK(stack_id); in GetCallerPC() 93 StackTrace stack = map->Get(stack_id); in GetCallerPC() 114 u32 stack_id = m.stack_trace_id(); in ProcessPlatformSpecificAllocationsCb() local 116 if (stack_id > 0) in ProcessPlatformSpecificAllocationsCb() 117 caller_pc = GetCallerPC(stack_id, param->stack_depot_reverse_map); in ProcessPlatformSpecificAllocationsCb()
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/unit/cloudformation/ |
D | test_connection.py | 44 self.stack_id = u'arn:aws:cloudformation:us-east-1:18:stack/Name/id' 51 {u'CreateStackResult': {u'StackId': self.stack_id}, 65 self.assertEqual(api_response, self.stack_id) 95 self.assertEqual(api_response, self.stack_id) 129 {u'UpdateStackResult': {u'StackId': self.stack_id}, 175 self.assertEqual(api_response, self.stack_id) 302 self.assertEqual(first.stack_id, 'arn:aws:cfn:us-east-1:1:stack') 313 self.assertEqual(second.stack_id, 'arn:aws:cfn:us-east-1:1:stack') 362 self.assertEqual(first.stack_id, 'arn:aws:cfn:us-east-1:1:stack') 372 self.assertEqual(second.stack_id, 'arn:aws:cfn:us-east-1:1:stack') [all …]
|
/external/compiler-rt/lib/tsan/rtl/ |
D | tsan_ignoreset.cc | 23 void IgnoreSet::Add(u32 stack_id) { in Add() argument 27 if (stacks_[i] == stack_id) in Add() 30 stacks_[size_++] = stack_id; in Add()
|
D | tsan_ignoreset.h | 26 void Add(u32 stack_id);
|
D | tsan_rtl_report.cc | 99 ReportStack *SymbolizeStackId(u32 stack_id) { in SymbolizeStackId() argument 100 if (stack_id == 0) in SymbolizeStackId() 102 StackTrace stack = StackDepotGet(stack_id); in SymbolizeStackId() 354 void ScopedReport::AddSleep(u32 stack_id) { in AddSleep() argument 355 rep_->sleep = SymbolizeStackId(stack_id); in AddSleep()
|
D | tsan_rtl.h | 537 void AddSleep(u32 stack_id); 616 ReportStack *SymbolizeStackId(u32 stack_id);
|
/external/v8/src/third_party/vtune/ |
D | jitprofiling.cc | 226 ((piJIT_Method_NIDS) EventSpecificData)->stack_id = (threadStack->CurrentStack)--; in iJIT_NotifyEvent() 253 ((piJIT_Method_NIDS) EventSpecificData)->stack_id = ++(threadStack->CurrentStack) + 1; in iJIT_NotifyEvent() 255 if (((piJIT_Method_NIDS) EventSpecificData)->stack_id > threadStack->TopStack) in iJIT_NotifyEvent() 256 ((piJIT_Method_NIDS) EventSpecificData)->stack_id = (unsigned int)-1; in iJIT_NotifyEvent()
|
D | jitprofiling.h | 194 unsigned int stack_id; member
|
/external/llvm/lib/ExecutionEngine/IntelJITEvents/ |
D | jitprofiling.c | 192 ((piJIT_Method_NIDS) EventSpecificData)->stack_id = in iJIT_NotifyEvent() 222 ((piJIT_Method_NIDS) EventSpecificData)->stack_id = in iJIT_NotifyEvent() 225 if (((piJIT_Method_NIDS) EventSpecificData)->stack_id in iJIT_NotifyEvent() 227 ((piJIT_Method_NIDS) EventSpecificData)->stack_id = in iJIT_NotifyEvent()
|
D | jitprofiling.h | 155 unsigned int stack_id; member
|
/external/compiler-rt/lib/asan/ |
D | asan_globals.cc | 53 u32 stack_id; member 101 return grs.stack_id; in FindRegistrationSite() 219 u32 stack_id = StackDepotPut(stack); in __asan_register_globals() local 224 GlobalRegistrationSite site = {stack_id, &globals[0], &globals[n - 1]}; in __asan_register_globals() 228 Printf("=== ID %d; %p %p\n", stack_id, &globals[0], &globals[n - 1]); in __asan_register_globals()
|
D | asan_thread.h | 39 destructor_iterations(GetPthreadDestructorIterations()), stack_id(0), in AsanThreadContext() 43 u32 stack_id; variable
|
D | asan_thread.cc | 38 stack_id = StackDepotPut(*args->stack); in OnCreated()
|
D | asan_report.cc | 616 StackDepotGet(context->stack_id).Print(); in DescribeThread()
|