/packages/modules/NeuralNetworks/tools/systrace_parser/parser/ |
D | aggregate.py | 56 for phase in _phase_and_subphases(PHASE_EXECUTION): 57 times[app_phase][phase] = {} 58 self_times[app_phase][phase] = {} 59 for phase in phases + [PHASE_OVERALL] + subphases[PHASE_EXECUTION]: 60 times[phase] = {} 61 self_times[phase] = {} 66 for phase in _phase_and_subphases(phase0): 68 tag = layer + "_" + phase 71 if layer == LAYER_DRIVER and phase == PHASE_EXECUTION: 87 times[app_phase][phase][layer] = zero_to_nan_if_missing(t0, phase, layer) [all …]
|
D | tree.py | 28 def push(self, start_time_s, mark, layer, phase, app_phase, subtract): argument 29 node = self.current.add(start_time_s, mark, layer, phase, app_phase, subtract) 80 elif node.phase() == PHASE_INITIALIZATION and node.parent.phase() != PHASE_INITIALIZATION: 84 node.parent.phase() != node.phase() and node.parent.phase() != PHASE_OVERALL and 85 node.phase() != PHASE_EXECUTION and node.phase() not in subphases[PHASE_EXECUTION]): 103 elif node.phase() == PHASE_INITIALIZATION: 110 explanation = "for LA_" + node.phase() 116 node.layer, node.phase(), node.app_phase, subtract=False) 129 node.parent.phase() != PHASE_OVERALL and 130 node.parent.phase() != node.phase()) and [all …]
|
D | output.py | 60 for phase in [PHASE_EXECUTION] + subphases[PHASE_EXECUTION]: 62 times_to_use[phase][layer] = times_to_use[PHASE_BENCHMARK][phase][layer] 73 for phase in phases_to_pick: 74 t = times_to_use[phase][layer] 75 values[make_tag(layer, phase)] = t 80 for phase in phases_to_pick: 81 values[make_tag(LAYER_TOTAL, phase)] = times_to_use[phase][LAYER_TOTAL] 103 …for phase in [PHASE_INPUTS_AND_OUTPUTS, PHASE_EXECUTION_LESS_IO_AND_RESULTS, PHASE_RESULTS, PHASE_… 105 values[layer + "_" + phase] = values[layer + "_" + phase] / divide_by 107 values[layer + "_" + phase] = math.nan
|
D | tracker.py | 30 def push(self, phase): argument 31 self.stack.append(phase) 111 [_, layer, phase] = tag.split("_") 112 if layer == LAYER_APPLICATION and phase in [PHASE_WARMUP, PHASE_BENCHMARK]: 113 self.app_phase.push(phase) 118 if layer == LAYER_APPLICATION and phase == PHASE_EXECUTION: 121 self.mytree.push(time, mark, layer, phase, self.app_phase.current(), subtract) 128 if node.layer == LAYER_APPLICATION and node.phase in [PHASE_WARMUP, PHASE_BENCHMARK]: 152 [begun, mark, layer, phase] = [ 153 node.start_time_s, node.mark, node.layer, node.phase()] [all …]
|
D | naming.py | 54 def make_tag(layer, phase): argument 55 return "_".join([layer, phase]) 82 phase = PHASE_INITIALIZATION 85 phase = "PU" 87 phase = PHASE_INITIALIZATION 89 phase = PHASE_COMPILATION 91 phase = PHASE_COMPILATION 93 phase = PHASE_EXECUTION 95 return "NN_" + make_tag(layer, phase)
|
/packages/modules/NeuralNetworks/common/include/ |
D | Tracing.h | 103 #define NNTRACE_APP(phase, detail) NNTRACE_FULL(NNTRACE_LAYER_APPLICATION, phase, detail) argument 104 #define NNTRACE_APP_SWITCH(phase, detail) \ argument 105 NNTRACE_FULL_SWITCH(NNTRACE_LAYER_APPLICATION, phase, detail) 107 #define NNTRACE_RT(phase, detail) NNTRACE_FULL(NNTRACE_LAYER_RUNTIME, phase, detail) argument 108 #define NNTRACE_RT_SWITCH(phase, detail) NNTRACE_FULL_SWITCH(NNTRACE_LAYER_RUNTIME, phase, detail) argument 110 #define NNTRACE_CPU(phase, detail) NNTRACE_FULL(NNTRACE_LAYER_CPU, phase, detail) argument 118 #define NNTRACE_FULL(layer, phase, detail) NNTRACE_NAME_1(("[NN_" layer "_" phase "]" detail)) argument 119 #define NNTRACE_FULL_SWITCH(layer, phase, detail) \ argument 120 NNTRACE_NAME_SWITCH(("[SW][NN_" layer "_" phase "]" detail)) 121 #define NNTRACE_FULL_SUBTRACT(layer, phase, detail) \ argument [all …]
|
/packages/modules/NeuralNetworks/tools/systrace_parser/parser/test/ |
D | test_stats.py | 37 layer, phase = tag.split("_") 39 actual = self.times[phase][layer] 41 actual = self.times[app_phase][phase][layer] 49 layer, phase = tag.split("_") 50 actual = self.self_times[phase][layer]
|
/packages/modules/StatsD/service/java/com/android/server/stats/ |
D | StatsCompanion.java | 85 public void onBootPhase(int phase) { in onBootPhase() argument 86 super.onBootPhase(phase); in onBootPhase() 87 if (phase == PHASE_THIRD_PARTY_APPS_CAN_START) { in onBootPhase() 90 if (phase == PHASE_BOOT_COMPLETED) { in onBootPhase()
|
/packages/modules/Wifi/service/java/com/android/server/wifi/ |
D | WifiService.java | 53 public void onBootPhase(int phase) { in onBootPhase() argument 54 if (phase == SystemService.PHASE_SYSTEM_SERVICES_READY) { in onBootPhase() 56 } else if (phase == SystemService.PHASE_BOOT_COMPLETED) { in onBootPhase()
|
/packages/modules/Wifi/service/java/com/android/server/wifi/aware/ |
D | WifiAwareService.java | 48 public void onBootPhase(int phase) { in onBootPhase() argument 49 if (phase == SystemService.PHASE_SYSTEM_SERVICES_READY) { in onBootPhase() 77 } else if (phase == SystemService.PHASE_BOOT_COMPLETED) { in onBootPhase()
|
/packages/modules/Wifi/service/java/com/android/server/wifi/p2p/ |
D | WifiP2pService.java | 48 public void onBootPhase(int phase) { in onBootPhase() argument 49 if (phase == SystemService.PHASE_SYSTEM_SERVICES_READY) { in onBootPhase()
|
/packages/modules/Wifi/service/java/com/android/server/wifi/scanner/ |
D | WifiScanningService.java | 56 public void onBootPhase(int phase) { in onBootPhase() argument 57 if (phase == SystemService.PHASE_SYSTEM_SERVICES_READY) { in onBootPhase()
|
/packages/modules/Wifi/service/java/com/android/server/wifi/rtt/ |
D | RttService.java | 49 public void onBootPhase(int phase) { in onBootPhase() argument 50 if (phase == SystemService.PHASE_SYSTEM_SERVICES_READY) { in onBootPhase()
|
/packages/services/Car/cpp/watchdog/server/src/ |
D | WatchdogInternalHandler.cpp | 193 aawi::BootPhase phase = static_cast<aawi::BootPhase>(static_cast<uint32_t>(arg1)); in notifySystemStateChange() local 194 if (phase >= aawi::BootPhase::BOOT_COMPLETED) { in notifySystemStateChange()
|
/packages/modules/NeuralNetworks/tools/systrace_parser/ |
D | contract-between-code-and-parser.txt | 57 … below ("Switch phase ...", "Subphases ...", 61 … phase that is not supposed to be nested, 66 *Switch phase during function*
|
/packages/modules/Connectivity/tests/ |
D | TEST_MAPPING | 17 // infra during the hardening phase.
|
/packages/modules/NetworkStack/ |
D | TEST_MAPPING | 23 // infra during the hardening phase.
|
/packages/services/Car/car-lib/src/com/android/car/internal/common/ |
D | EventLogTags.logtags | 27 150001 car_helper_boot_phase (phase|1)
|
/packages/modules/NeuralNetworks/tools/api/ |
D | types.spec | 3748 * score updating phase in soft NMS.
|
/packages/inputmethods/LatinIME/dictionaries/ |
D | fr_wordlist.combined.gz | 1dictionary=main:fr,locale=fr,description=Français,date=1414726264, ... |
D | en_GB_wordlist.combined.gz | 1dictionary=main:en_gb,locale=en_GB,description=English (UK),date ... |
D | en_US_wordlist.combined.gz |
|
D | en_wordlist.combined.gz | 1dictionary=main:en,locale=en,description=English,date=1414726273, ... |