Home
last modified time | relevance | path

Searched refs:trace (Results 26 - 50 of 560) sorted by relevance

12345678910>>...23

/base/hiviewdfx/hiview/utility/smart_parser/test/moduletest/common/
H A Dsmart_parser_module_test.cpp62 std::string trustStack = LogUtil::SMART_PARSER_TEST_DIR + "/SmartParserTest001/trace.txt"; in HWTEST_F()
80 std::vector<std::string> trace; in HWTEST_F() local
81 StringUtil::SplitStr(eventInfos["END_STACK"], LogUtil::SPLIT_PATTERN, trace, false, false); in HWTEST_F()
84 while (getline(buff, line) && num < trace.size()) { in HWTEST_F()
85 EXPECT_STREQ(line.c_str(), trace[num++].c_str()); in HWTEST_F()
103 std::string trustStack = LogUtil::SMART_PARSER_TEST_DIR + "/SmartParserTest002/trace.txt"; in HWTEST_F()
120 std::vector<std::string> trace; in HWTEST_F() local
121 StringUtil::SplitStr(eventInfos["END_STACK"], LogUtil::SPLIT_PATTERN, trace, false, false); in HWTEST_F()
124 while (getline(buff, line) && num < trace.size()) { in HWTEST_F()
125 EXPECT_STREQ(line.c_str(), trace[nu in HWTEST_F()
165 std::vector<std::string> trace; HWTEST_F() local
200 std::vector<std::string> trace; HWTEST_F() local
235 std::vector<std::string> trace; HWTEST_F() local
320 std::vector<std::string> trace; HWTEST_F() local
756 std::vector<std::string> trace; HWTEST_F() local
791 std::vector<std::string> trace; HWTEST_F() local
826 std::vector<std::string> trace; HWTEST_F() local
[all...]
/third_party/node/deps/v8/src/regexp/
H A Dregexp-compiler.cc165 // string. Therefore code generated for a non-trivial trace is specialized
166 // to that trace. The code generator therefore has the ability to generate
170 // trace is flushed and a generic version of the code for a node is emitted.
172 // trace is not recorded in the node and so it cannot currently be reused in
173 // the event that code generation is requested for an identical trace.
411 // The chronologically first deferred action in the trace in PerformDeferredActions()
585 void NegativeSubmatchSuccess::Emit(RegExpCompiler* compiler, Trace* trace) { in Emit() argument
588 // Omit flushing the trace. We discard the entire stack frame anyway. in Emit()
591 // We are completely independent of the trace, since we ignore it, in Emit()
611 void EndNode::Emit(RegExpCompiler* compiler, Trace* trace) { in Emit() argument
723 GenerateGuard(RegExpMacroAssembler* macro_assembler, Guard* guard, Trace* trace) GenerateGuard() argument
1320 LimitVersions(RegExpCompiler* compiler, Trace* trace) LimitVersions() argument
1503 EmitQuickCheck(RegExpCompiler* compiler, Trace* bounds_check_trace, Trace* trace, bool preload_has_checked_bounds, Label* on_possible_success, QuickCheckDetails* details, bool fall_through_on_failure, ChoiceNode* predecessor) EmitQuickCheck() argument
2116 EmitHat(RegExpCompiler* compiler, RegExpNode* on_success, Trace* trace) EmitHat() argument
2158 EmitBoundaryCheck(RegExpCompiler* compiler, Trace* trace) EmitBoundaryCheck() argument
2205 BacktrackIfPrevious( RegExpCompiler* compiler, Trace* trace, AssertionNode::IfPrevious backtrack_if_previous) BacktrackIfPrevious() argument
2253 Emit(RegExpCompiler* compiler, Trace* trace) Emit() argument
2333 TextEmitPass(RegExpCompiler* compiler, TextEmitPassType pass, bool preloaded, Trace* trace, bool first_element_checked, int* checked_up_to) TextEmitPass() argument
2464 Emit(RegExpCompiler* compiler, Trace* trace) Emit() argument
2614 Emit(RegExpCompiler* compiler, Trace* trace) Emit() argument
3043 AssertGuardsMentionRegisters(Trace* trace) AssertGuardsMentionRegisters() argument
3072 Emit(RegExpCompiler* compiler, Trace* trace) Emit() argument
3137 EmitGreedyLoop(RegExpCompiler* compiler, Trace* trace, AlternativeGenerationList* alt_gens, PreloadState* preload, GreedyLoopState* greedy_loop_state, int text_length) EmitGreedyLoop() argument
3179 EmitOptimizedUnanchoredSearch(RegExpCompiler* compiler, Trace* trace) EmitOptimizedUnanchoredSearch() argument
3225 EmitChoices(RegExpCompiler* compiler, AlternativeGenerationList* alt_gens, int first_choice, Trace* trace, PreloadState* preload) EmitChoices() argument
3308 EmitOutOfLineContinuation(RegExpCompiler* compiler, Trace* trace, GuardedAlternative alternative, AlternativeGeneration* alt_gen, int preload_characters, bool next_expects_preload) EmitOutOfLineContinuation() argument
3347 Emit(RegExpCompiler* compiler, Trace* trace) Emit() argument
3467 Emit(RegExpCompiler* compiler, Trace* trace) Emit() argument
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/marl/include/marl/
H A Dtrace.h15 // The Trace API produces a trace event file that can be consumed with Chrome's
18 // https://www.chromium.org/developers/how-tos/trace-event-profiling-tool
41 // Trace writes a trace event file into the current working directory that can
62 Trace* const trace; member in marl::Trace::ScopedEvent
71 Trace* const trace; member in marl::Trace::ScopedAsyncEvent
174 Trace::ScopedEvent::ScopedEvent(const char* fmt, ...) : trace(Trace::get()) { in ScopedEvent()
175 if (trace != nullptr) { in ScopedEvent()
182 trace->beginEvent(name); in ScopedEvent()
187 if (trace != nullptr) { in ~ScopedEvent()
188 trace in ~ScopedEvent()
[all...]
/third_party/node/test/parallel/
H A Dtest-trace-events-dynamic-enable.js12 trace: {
17 const { trace } = internalBinding('trace_events');
46 trace(kBeforeEvent, 'foo', 'test1', 0, 'test');
51 trace(kBeforeEvent, 'foo', 'test2', 0, 'test');
52 trace(kBeforeEvent, 'bar', 'test3', 0, 'test');
56 trace(kBeforeEvent, 'foo', 'test4', 0, 'test');
H A Dtest-trace-events-async-hooks-dynamic.js10 common.skip('missing trace events');
45 function filterTimeoutTraces(trace) {
46 if (trace.pid !== proc.pid)
48 if (trace.cat !== 'node,node.async_hooks')
50 if (trace.name !== 'Timeout')
59 for (const trace of timeoutTraces) {
60 threads.add(trace.tid);
H A Dtest-trace-events-async-hooks-worker.js10 common.skip('missing trace events');
36 [ '--trace-event-categories', 'node.async_hooks', '-e', worker ],
52 function filterTimeoutTraces(trace) {
53 if (trace.pid !== proc.pid)
55 if (trace.cat !== 'node,node.async_hooks')
57 if (trace.name !== 'Timeout')
66 for (const trace of timeoutTraces) {
67 threads.add(trace.tid);
/foundation/multimedia/player_framework/services/services/player/ipc/
H A Dplayer_service_stub.cpp199 MediaTrace trace("PlayerServiceStub::DestroyStub"); in DestroyStub()
213 MediaTrace trace("PlayerServiceStub::OnRemoteRequest"); in OnRemoteRequest()
247 MediaTrace trace("PlayerServiceStub::SetListenerObject"); in SetListenerObject()
262 MediaTrace trace("PlayerServiceStub::SetSource(url)"); in SetSource()
269 MediaTrace trace("PlayerServiceStub::SetSource(datasource)"); in SetSource()
284 MediaTrace trace("PlayerServiceStub::SetSource(fd)"); in SetSource()
291 MediaTrace trace("PlayerServiceStub::AddSubSource(url)"); in AddSubSource()
298 MediaTrace trace("PlayerServiceStub::AddSubSource(fd)"); in AddSubSource()
305 MediaTrace trace("PlayerServiceStub::Play"); in Play()
315 MediaTrace trace("PlayerServiceStu in Prepare()
[all...]
H A Dplayer_service_proxy.cpp104 MediaTrace trace("PlayerServiceProxy::SetListenerObject"); in SetListenerObject()
122 MediaTrace trace("PlayerServiceProxy::SetSource"); in SetSource()
140 MediaTrace trace("PlayerServiceProxy::SetSource"); in SetSource()
158 MediaTrace trace("PlayerServiceProxy::SetSource"); in SetSource()
177 MediaTrace trace("PlayerServiceProxy::AddSubSource"); in AddSubSource()
195 MediaTrace trace("PlayerServiceProxy::AddSubSource"); in AddSubSource()
214 MediaTrace trace("PlayerServiceProxy::Play"); in Play()
230 MediaTrace trace("PlayerServiceProxy::Prepare"); in Prepare()
246 MediaTrace trace("Proxy::SetRenderFirstFrame"); in SetRenderFirstFrame()
264 MediaTrace trace("Prox in SetPlayRange()
[all...]
/third_party/node/benchmark/misc/
H A Dtrace.js7 method: ['trace', 'isTraceCategoryEnabled'],
12 '--trace-event-categories', 'foo',
18 } = common.binding('constants').trace;
20 function doTrace(n, trace) {
23 trace(kBeforeEvent, 'foo', 'test', 0, 'test');
39 trace,
44 case 'trace':
45 doTrace(n, trace);
/third_party/curl/tests/
H A Dmemanalyze.pl48 $trace=1;
107 if($trace && ($i =~ /([^ ]*) reached memlimit/)) {
131 if($trace) {
158 if($trace) {
184 if($trace) {
198 if($trace) {
207 if($trace) {
229 if($trace) {
249 if($trace) {
355 if($trace) {
[all...]
/third_party/node/lib/internal/source_map/
H A Dprepare_stack_trace.js32 const prepareStackTrace = (globalThis, error, trace) => {
39 return f(error, trace);
43 maybeOverridePrepareStackTrace(globalThis, error, trace);
53 if (trace.length === 0) {
59 const preparedTrace = ArrayPrototypeJoin(ArrayPrototypeMap(trace, (t, i) => {
62 // A stack trace will often have several call sites in a row within the
83 const name = getOriginalSymbolName(sm, trace, i);
84 // Construct call site name based on: v8.dev/docs/stack-trace-api:
113 // trace, if possible restore it from the names field of the source map:
114 function getOriginalSymbolName(sourceMap, trace, curInde
[all...]
/third_party/rust/crates/bindgen/bindgen/ir/analysis/
H A Dtemplate_params.rs235 trace!( in constrain_instantiation_of_blocklisted_template()
276 trace!(" template instantiation"); in constrain_instantiation()
293 trace!( in constrain_instantiation()
301 trace!(" param is used by template definition"); in constrain_instantiation()
335 trace!(" other item: join with successors' usage"); in constrain_join()
337 item.trace( in constrain_join()
361 trace!( in constrain_join()
390 i.trace( in new()
408 item.trace( in new()
476 item.trace( in new()
[all...]
/third_party/node/test/internet/
H A Dtest-trace-events-dns.js45 [ '--trace-event-categories',
64 .filter((trace) => trace.cat !== '__metadata');
68 // DNS native trace events should be generated.
69 assert(traces.some((trace) => {
70 return (trace.name === tr && trace.pid === proc.pid);
/foundation/distributeddatamgr/data_share/frameworks/native/common/include/
H A Dadaptor.h21 #define DISTRIBUTED_DATA_HITRACE(trace) DO_NOTHING
24 #define DISTRIBUTED_DATA_HITRACE(trace) DO_NOTHING
28 #define DISTRIBUTED_DATA_HITRACE(trace) HiTrace hitrace(trace)
/base/security/asset/services/core_service/src/
H A Dtrace_scope.rs32 pub(crate) fn trace(value: &str) -> Self {
33 let trace = Self { label: Self::HITRACE_TAG_SECURITY };
34 start_trace(trace.label, value);
35 trace
/third_party/node/deps/v8/third_party/wasm-api/example/
H A Dstart.c82 printf("Printing trace...\n"); in main()
83 own wasm_frame_vec_t trace; in main() local
84 wasm_trap_trace(trap, &trace); in main()
85 if (trace.size > 0) { in main()
86 for (size_t i = 0; i < trace.size; ++i) { in main()
87 print_frame(trace.data[i]); in main()
90 printf("> Empty trace.\n"); in main()
93 wasm_frame_vec_delete(&trace); in main()
/third_party/python/Lib/
H A Dtracemalloc.py205 return tuple(Frame(trace) for trace in self._frames[index])
263 did not trace the allocation of the object.
278 def __init__(self, trace):
279 # trace is a tuple: (domain: int, size: int, traceback: tuple).
281 self._trace = trace
314 # traces is a tuple of trace tuples: see Trace constructor
322 return tuple(Trace(trace) for trace in self._traces[index])
326 def __contains__(self, trace)
[all...]
/foundation/filemanagement/user_file_service/interfaces/inner_api/file_access/src/
H A Djs_file_access_ext_ability.cpp78 UserAccessTracer trace; in Init() local
79 trace.Start("Init"); in Init()
107 UserAccessTracer trace; in OnStart() local
108 trace.Start("OnStart"); in OnStart()
119 UserAccessTracer trace; in OnConnect() local
120 trace.Start("OnConnect"); in OnConnect()
135 UserAccessTracer trace; in CallObjectMethod() local
136 trace.Start("CallObjectMethod"); in CallObjectMethod()
169 UserAccessTracer trace; in DoCallJsMethod() local
170 trace in DoCallJsMethod()
222 UserAccessTracer trace; CallJsMethod() local
274 UserAccessTracer trace; GetSrcPath() local
297 UserAccessTracer trace; OpenFile() local
348 UserAccessTracer trace; CreateFile() local
400 UserAccessTracer trace; Mkdir() local
452 UserAccessTracer trace; Delete() local
496 UserAccessTracer trace; Move() local
558 UserAccessTracer trace; GetResultByJs() local
594 UserAccessTracer trace; ParserGetJsResult() local
648 UserAccessTracer trace; Copy() local
690 UserAccessTracer trace; CopyFile() local
748 UserAccessTracer trace; Rename() local
1017 UserAccessTracer trace; GetFileInfoNum() local
1098 UserAccessTracer trace; ListFile() local
1145 UserAccessTracer trace; ScanFile() local
1254 UserAccessTracer trace; GetRoots() local
1296 UserAccessTracer trace; Access() local
1398 UserAccessTracer trace; Query() local
1444 UserAccessTracer trace; GetFileInfoFromUri() local
1495 UserAccessTracer trace; GetFileInfoFromRelativePath() local
1546 UserAccessTracer trace; FuncCallback() local
1589 UserAccessTracer trace; StartWatcher() local
1642 UserAccessTracer trace; StopWatcher() local
1687 UserAccessTracer trace; Notify() local
1874 UserAccessTracer trace; MoveItem() local
1917 UserAccessTracer trace; MoveFile() local
[all...]
/third_party/node/deps/v8/tools/
H A Dgc-nvp-to-csv.py9 # V8 when run with flags --trace-gc --trace-gc-nvp.
11 # Usage: gc-nvp-to-csv.py <GC-trace-filename>
23 trace = gc_nvp_common.parse_gc_trace(filename)
24 if len(trace):
25 keys = trace[0].keys()
27 for entry in trace:
32 print("Usage: %s <GC-trace-filename>" % sys.argv[0])
H A Dgc_nvp_common.py6 # Common code for parsing --trace-gc-nvp output.
25 trace = []
30 info['i'] = len(trace)
31 trace.append(info)
32 return trace
/third_party/node/deps/v8/src/libplatform/tracing/
H A Dtrace-event-listener.cc5 #include "src/libplatform/tracing/trace-event-listener.h"
7 #include "protos/perfetto/trace/trace.pb.h"
15 perfetto::protos::Trace trace; in ParseFromArray() local
16 CHECK(trace.ParseFromArray(array.data(), static_cast<int>(array.size()))); in ParseFromArray()
18 for (int i = 0; i < trace.packet_size(); i++) { in ParseFromArray()
20 const perfetto::protos::TracePacket& packet = trace.packet(i); in ParseFromArray()
/third_party/FreeBSD/contrib/libexecinfo/
H A Dbacktrace.c144 char **backtrace_symbols_fmt(void *const *trace, size_t len, const char *fmt) in backtrace_symbols_fmt() argument
160 x = format_address(&ptr, &psize, offs, fmt, trace[i]); in backtrace_symbols_fmt()
179 int backtrace_symbols_fd_fmt(void *const *trace, size_t len, int fd, in backtrace_symbols_fd_fmt() argument
182 char **s = backtrace_symbols_fmt(trace, len, fmt); in backtrace_symbols_fd_fmt()
194 char **backtrace_symbols(void *const *trace, size_t len) in backtrace_symbols() argument
196 return backtrace_symbols_fmt(trace, len, fmt); in backtrace_symbols()
199 int backtrace_symbols_fd(void *const *trace, size_t len, int fd) in backtrace_symbols_fd() argument
201 return backtrace_symbols_fd_fmt(trace, len, fd, fmt); in backtrace_symbols_fd()
/third_party/python/Objects/
H A Dcapsule.c199 char *trace; in PyCapsule_Import() local
209 trace = name_dup; in PyCapsule_Import()
210 while (trace) { in PyCapsule_Import()
211 char *dot = strchr(trace, '.'); in PyCapsule_Import()
217 object = PyImport_ImportModule(trace); in PyCapsule_Import()
219 PyErr_Format(PyExc_ImportError, "PyCapsule_Import could not import module \"%s\"", trace); in PyCapsule_Import()
222 PyObject *object2 = PyObject_GetAttrString(object, trace); in PyCapsule_Import()
230 trace = dot; in PyCapsule_Import()
/foundation/filemanagement/user_file_service/services/native/file_access_service/src/
H A Dfile_access_service_proxy.cpp123 UserAccessTracer trace; in OnChange() local
124 trace.Start("OnChange"); in OnChange()
167 UserAccessTracer trace; in RegisterNotify() local
168 trace.Start("RegisterNotify"); in RegisterNotify()
252 UserAccessTracer trace; in UnregisterNotify() local
253 trace.Start("UnregisterNotify"); in UnregisterNotify()
301 UserAccessTracer trace; in ConnectFileExtAbility() local
302 trace.Start("ConnectFileExtAbility"); in ConnectFileExtAbility()
349 UserAccessTracer trace; in DisConnectFileExtAbility() local
350 trace in DisConnectFileExtAbility()
393 UserAccessTracer trace; GetExtensionProxy() local
[all...]
/third_party/python/Tools/unicode/
H A Dmakeunicodedata.py114 def maketables(trace=0):
128 makeunicodename(unicode, trace)
129 makeunicodedata(unicode, trace)
130 makeunicodetype(unicode, trace)
136 def makeunicodedata(unicode, trace):
323 index1, index2, shift = splitbins(index, trace)
327 Array("index1", index1).dump(fp, trace)
328 Array("index2", index2).dump(fp, trace)
331 index1, index2, shift = splitbins(decomp_index, trace)
334 Array("decomp_data", decomp_data).dump(fp, trace)
[all...]

Completed in 17 milliseconds

12345678910>>...23