Home
last modified time | relevance | path

Searched refs:call_stack (Results 1 – 25 of 38) sorted by relevance

12

/third_party/python/Lib/test/dtracedata/
Dcall_stack.d.expected1 function-entry:call_stack.py:start:23
2 function-entry: call_stack.py:function_1:1
3 function-entry: call_stack.py:function_3:9
4 function-return: call_stack.py:function_3:10
5 function-return: call_stack.py:function_1:2
6 function-entry: call_stack.py:function_2:5
7 function-entry: call_stack.py:function_1:1
8 function-entry: call_stack.py:function_3:9
9 function-return: call_stack.py:function_3:10
10 function-return: call_stack.py:function_1:2
[all …]
Dcall_stack.stp.expected1 function__entry:call_stack.py:start:23
2 function__entry:call_stack.py:function_1:1
3 function__return:call_stack.py:function_1:2
4 function__entry:call_stack.py:function_2:5
5 function__entry:call_stack.py:function_1:1
6 function__return:call_stack.py:function_1:2
7 function__return:call_stack.py:function_2:6
8 function__entry:call_stack.py:function_3:9
9 function__return:call_stack.py:function_3:10
10 function__entry:call_stack.py:function_4:13
[all …]
/third_party/boost/boost/asio/detail/
Dcall_stack.hpp31 class call_stack class
42 next_(call_stack<Key, Value>::top_) in context()
45 call_stack<Key, Value>::top_ = this; in context()
52 next_(call_stack<Key, Value>::top_) in context()
54 call_stack<Key, Value>::top_ = this; in context()
60 call_stack<Key, Value>::top_ = next_; in ~context()
77 friend class call_stack<Key, Value>;
118 tss_ptr<typename call_stack<Key, Value>::context>
119 call_stack<Key, Value>::top_;
Dthread_context.hpp40 typedef call_stack<thread_context, thread_info_base> thread_call_stack;
/third_party/boost/libs/asio/include/boost/asio/detail/
Dcall_stack.hpp31 class call_stack class
42 next_(call_stack<Key, Value>::top_) in context()
45 call_stack<Key, Value>::top_ = this; in context()
52 next_(call_stack<Key, Value>::top_) in context()
54 call_stack<Key, Value>::top_ = this; in context()
60 call_stack<Key, Value>::top_ = next_; in ~context()
77 friend class call_stack<Key, Value>;
118 tss_ptr<typename call_stack<Key, Value>::context>
119 call_stack<Key, Value>::top_;
Dthread_context.hpp40 typedef call_stack<thread_context, thread_info_base> thread_call_stack;
/third_party/grpc/src/core/lib/channel/
Dchannel_stack.h77 grpc_call_stack* call_stack; member
231 void grpc_call_stack_set_pollset_or_pollset_set(grpc_call_stack* call_stack,
235 #define GRPC_CALL_STACK_REF(call_stack, reason) \ argument
236 grpc_stream_ref(&(call_stack)->refcount, reason)
237 #define GRPC_CALL_STACK_UNREF(call_stack, reason) \ argument
238 grpc_stream_unref(&(call_stack)->refcount, reason)
244 #define GRPC_CALL_STACK_REF(call_stack, reason) \ argument
246 grpc_stream_ref(&(call_stack)->refcount); \
249 #define GRPC_CALL_STACK_UNREF(call_stack, reason) \ argument
251 grpc_stream_unref(&(call_stack)->refcount); \
Dchannel_stack.cc84 grpc_call_element* grpc_call_stack_element(grpc_call_stack* call_stack, in grpc_call_stack_element() argument
86 return CALL_ELEMS_FROM_STACK(call_stack) + index; in grpc_call_stack_element()
161 elem_args->call_stack->count = count; in grpc_call_stack_init()
162 GRPC_STREAM_REF_INIT(&elem_args->call_stack->refcount, initial_refs, destroy, in grpc_call_stack_init()
164 call_elems = CALL_ELEMS_FROM_STACK(elem_args->call_stack); in grpc_call_stack_init()
191 void grpc_call_stack_set_pollset_or_pollset_set(grpc_call_stack* call_stack, in grpc_call_stack_set_pollset_or_pollset_set() argument
193 size_t count = call_stack->count; in grpc_call_stack_set_pollset_or_pollset_set()
197 call_elems = CALL_ELEMS_FROM_STACK(call_stack); in grpc_call_stack_set_pollset_or_pollset_set()
/third_party/grpc/test/core/channel/
Dchannel_stack_test.cc92 grpc_call_stack* call_stack; in test_create_channel_stack() local
118 call_stack = in test_create_channel_stack()
121 call_stack, /* call_stack */ in test_create_channel_stack()
131 grpc_call_stack_init(channel_stack, 1, free_call, call_stack, &args); in test_create_channel_stack()
133 GPR_ASSERT(call_stack->count == 1); in test_create_channel_stack()
134 call_elem = grpc_call_stack_element(call_stack, 0); in test_create_channel_stack()
141 GRPC_CALL_STACK_UNREF(call_stack, "done"); in test_create_channel_stack()
/third_party/mesa3d/src/gallium/auxiliary/tgsi/
Dtgsi_transform.c115 int call_stack = 0; in tgsi_transform_shader() local
190 call_stack == 0 && ctx->epilog && !epilog_emitted) { in tgsi_transform_shader()
211 call_stack++; in tgsi_transform_shader()
220 assert(call_stack > 0); in tgsi_transform_shader()
221 call_stack--; in tgsi_transform_shader()
277 assert(call_stack == 0); in tgsi_transform_shader()
/third_party/grpc/src/core/ext/filters/client_channel/
Ddynamic_filters.cc29 (DynamicFilters::Call*)(((char*)(call_stack)) - \
41 grpc_call_stack* call_stack = CALL_TO_CALL_STACK(this); in Call() local
43 call_stack, /* call_stack */ in Call()
59 grpc_call_stack_set_pollset_or_pollset_set(call_stack, args.pollent); in Call()
64 grpc_call_stack* call_stack = CALL_TO_CALL_STACK(this); in StartTransportStreamOpBatch() local
65 grpc_call_element* top_elem = grpc_call_stack_element(call_stack, 0); in StartTransportStreamOpBatch()
/third_party/python/Doc/howto/
Dinstrumentation.rst174 $ sudo dtrace -q -s call_stack.d -c "python3.6 script.py"
180 156641360502280 function-entry:call_stack.py:start:23
181 156641360518804 function-entry: call_stack.py:function_1:1
182 156641360532797 function-entry: call_stack.py:function_3:9
183 156641360546807 function-return: call_stack.py:function_3:10
184 156641360563367 function-return: call_stack.py:function_1:2
185 156641360578365 function-entry: call_stack.py:function_2:5
186 156641360591757 function-entry: call_stack.py:function_1:1
187 156641360605556 function-entry: call_stack.py:function_3:9
188 156641360617482 function-return: call_stack.py:function_3:10
[all …]
/third_party/python/Doc/tools/
Dsusp-ignored.csv33 howto/instrumentation,,:call,156641360502280 function-entry:call_stack.py:start:23
34 howto/instrumentation,,:start,156641360502280 function-entry:call_stack.py:start:23
35 howto/instrumentation,,:function,156641360518804 function-entry: call_stack.py:function_1:1
36 howto/instrumentation,,:function,156641360532797 function-entry: call_stack.py:function_3:9
37 howto/instrumentation,,:function,156641360546807 function-return: call_stack.py:function_3:10
38 howto/instrumentation,,:function,156641360563367 function-return: call_stack.py:function_1:2
39 howto/instrumentation,,:function,156641360578365 function-entry: call_stack.py:function_2:5
40 howto/instrumentation,,:function,156641360591757 function-entry: call_stack.py:function_1:1
41 howto/instrumentation,,:function,156641360605556 function-entry: call_stack.py:function_3:9
42 howto/instrumentation,,:function,156641360617482 function-return: call_stack.py:function_3:10
[all …]
/third_party/grpc/src/core/ext/filters/deadline/
Ddeadline_filter.cc44 GRPC_CALL_STACK_REF(deadline_state->call_stack, "DeadlineTimerState"); in TimerState()
60 GRPC_CALL_STACK_UNREF(deadline_state->call_stack, "DeadlineTimerState"); in YieldCallCombiner()
90 GRPC_CALL_STACK_UNREF(deadline_state->call_stack, "DeadlineTimerState"); in TimerCallback()
193 : call_stack(args.call_stack), in grpc_deadline_state()
Ddeadline_filter.h37 grpc_call_stack* call_stack; member
/third_party/boost/boost/asio/detail/impl/
Dstrand_service.ipp19 #include <boost/asio/detail/call_stack.hpp>
92 return call_stack<strand_impl>::contains(impl) != 0;
125 call_stack<strand_impl>::context ctx(impl);
181 call_stack<strand_impl>::context ctx(impl);
Dstrand_executor_service.ipp127 return !!call_stack<strand_impl>::contains(impl.get());
142 call_stack<strand_impl>::context ctx(impl.get());
/third_party/boost/libs/asio/include/boost/asio/detail/impl/
Dstrand_service.ipp19 #include <boost/asio/detail/call_stack.hpp>
92 return call_stack<strand_impl>::contains(impl) != 0;
125 call_stack<strand_impl>::context ctx(impl);
181 call_stack<strand_impl>::context ctx(impl);
Dstrand_executor_service.ipp127 return !!call_stack<strand_impl>::contains(impl.get());
142 call_stack<strand_impl>::context ctx(impl.get());
/third_party/skia/third_party/externals/spirv-tools/source/val/
Dvalidation_state.cpp1087 std::stack<uint32_t> call_stack; in ComputeFunctionToEntryPointMapping() local
1089 call_stack.push(entry_point); in ComputeFunctionToEntryPointMapping()
1090 while (!call_stack.empty()) { in ComputeFunctionToEntryPointMapping()
1091 const uint32_t called_func_id = call_stack.top(); in ComputeFunctionToEntryPointMapping()
1092 call_stack.pop(); in ComputeFunctionToEntryPointMapping()
1101 call_stack.push(new_call); in ComputeFunctionToEntryPointMapping()
1110 std::stack<uint32_t> call_stack; in ComputeRecursiveEntryPoints() local
1114 call_stack.push(new_call); in ComputeRecursiveEntryPoints()
1117 while (!call_stack.empty()) { in ComputeRecursiveEntryPoints()
1118 const uint32_t called_func_id = call_stack.top(); in ComputeRecursiveEntryPoints()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/val/
Dvalidation_state.cpp1087 std::stack<uint32_t> call_stack; in ComputeFunctionToEntryPointMapping() local
1089 call_stack.push(entry_point); in ComputeFunctionToEntryPointMapping()
1090 while (!call_stack.empty()) { in ComputeFunctionToEntryPointMapping()
1091 const uint32_t called_func_id = call_stack.top(); in ComputeFunctionToEntryPointMapping()
1092 call_stack.pop(); in ComputeFunctionToEntryPointMapping()
1101 call_stack.push(new_call); in ComputeFunctionToEntryPointMapping()
1110 std::stack<uint32_t> call_stack; in ComputeRecursiveEntryPoints() local
1114 call_stack.push(new_call); in ComputeRecursiveEntryPoints()
1117 while (!call_stack.empty()) { in ComputeRecursiveEntryPoints()
1118 const uint32_t called_func_id = call_stack.top(); in ComputeRecursiveEntryPoints()
[all …]
/third_party/spirv-tools/source/val/
Dvalidation_state.cpp1001 std::stack<uint32_t> call_stack; in ComputeFunctionToEntryPointMapping() local
1003 call_stack.push(entry_point); in ComputeFunctionToEntryPointMapping()
1004 while (!call_stack.empty()) { in ComputeFunctionToEntryPointMapping()
1005 const uint32_t called_func_id = call_stack.top(); in ComputeFunctionToEntryPointMapping()
1006 call_stack.pop(); in ComputeFunctionToEntryPointMapping()
1015 call_stack.push(new_call); in ComputeFunctionToEntryPointMapping()
1024 std::stack<uint32_t> call_stack; in ComputeRecursiveEntryPoints() local
1028 call_stack.push(new_call); in ComputeRecursiveEntryPoints()
1031 while (!call_stack.empty()) { in ComputeRecursiveEntryPoints()
1032 const uint32_t called_func_id = call_stack.top(); in ComputeRecursiveEntryPoints()
[all …]
/third_party/python/Lib/test/
Dtest_yield_from.py960 def call_stack(): function
964 yield call_stack()
965 yield call_stack()
966 yield call_stack()
/third_party/grpc/test/cpp/microbenchmarks/
Dbm_call_create.cc524 grpc_call_stack* call_stack = in BM_IsolatedFilter() local
533 grpc_call_element_args call_args{call_stack, in BM_IsolatedFilter()
545 typename TestOp::Op op(&test_op_data, call_stack); in BM_IsolatedFilter()
546 grpc_call_stack_destroy(call_stack, &final_info, nullptr); in BM_IsolatedFilter()
560 gpr_free(call_stack); in BM_IsolatedFilter()
/third_party/mesa3d/src/freedreno/afuc/
Demu.c273 emu->branch_target = emu->call_stack[--emu->call_stack_idx]; in emu_instr()
278 assert(emu->call_stack_idx < ARRAY_SIZE(emu->call_stack)); in emu_instr()
283 emu->call_stack[emu->call_stack_idx++] = emu->gpr_regs.pc + 2; in emu_instr()

12