Home
last modified time | relevance | path

Searched refs:stack_id (Results 1 – 18 of 18) sorted by relevance

/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/opsworks/
Dlayer1.py478 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/
Dperf_to_tracing.py74 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/
Dstack.py17 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/
Dmsan_origin.h89 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/
Dlsan_common_linux.cc91 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/
Dtest_connection.py44 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/
Dtsan_ignoreset.cc23 void IgnoreSet::Add(u32 stack_id) { in Add() argument
27 if (stacks_[i] == stack_id) in Add()
30 stacks_[size_++] = stack_id; in Add()
Dtsan_ignoreset.h26 void Add(u32 stack_id);
Dtsan_rtl_report.cc99 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()
Dtsan_rtl.h537 void AddSleep(u32 stack_id);
616 ReportStack *SymbolizeStackId(u32 stack_id);
/external/v8/src/third_party/vtune/
Djitprofiling.cc226 ((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()
Djitprofiling.h194 unsigned int stack_id; member
/external/llvm/lib/ExecutionEngine/IntelJITEvents/
Djitprofiling.c192 ((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()
Djitprofiling.h155 unsigned int stack_id; member
/external/compiler-rt/lib/asan/
Dasan_globals.cc53 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()
Dasan_thread.h39 destructor_iterations(GetPthreadDestructorIterations()), stack_id(0), in AsanThreadContext()
43 u32 stack_id; variable
Dasan_thread.cc38 stack_id = StackDepotPut(*args->stack); in OnCreated()
Dasan_report.cc616 StackDepotGet(context->stack_id).Print(); in DescribeThread()