Home
last modified time | relevance | path

Searched full:launch (Results 1 – 25 of 2646) sorted by relevance

12345678910>>...106

/external/perfetto/src/trace_processor/metrics/sql/android/startup/
Dslow_start_reasons.sql237 ) launch
240 s.ts BETWEEN launch.ts AND launch.ts_end
267 ) launch
270 sched.ts BETWEEN launch.ts AND launch.ts_end
271 ORDER BY (launch.ts_end - sched.ts) DESC
287 launch.dur as launch_dur,
294 get_missing_baseline_profile_for_launch(launch.startup_id, launch.package)
298 FROM android_startups launch
299 WHERE launch.startup_id = $startup_id
300 AND missing_baseline_profile_for_launch(launch.startup_id, launch.package)
[all …]
Dsystem_state.sql22 -- Given a launch id and process name glob, returns the sched.dur if a process with
23 -- that name was running on a CPU concurrent to that launch.
37 ) launch
40 sched.ts BETWEEN launch.ts AND launch.ts_end;
42 -- Given a launch id and slice name glob, returns the number of slices with that
43 -- name which start concurrent to that launch.
52 ) launch
55 slice.ts BETWEEN launch.ts AND launch.ts_end;
/external/libcxx/test/std/thread/futures/futures.overview/
Dlaunch.pass.cpp14 // enum class launch
29 LIBCPP_STATIC_ASSERT(static_cast<int>(std::launch::any) == in main()
30 … (static_cast<int>(std::launch::async) | static_cast<int>(std::launch::deferred)), ""); in main()
32 LIBCPP_STATIC_ASSERT(std::launch::any == (std::launch::async | std::launch::deferred), ""); in main()
33 static_assert(std::launch(0) == (std::launch::async & std::launch::deferred), ""); in main()
34 LIBCPP_STATIC_ASSERT(std::launch::any == (std::launch::async ^ std::launch::deferred), ""); in main()
35 LIBCPP_STATIC_ASSERT(std::launch::deferred == ~std::launch::async, ""); in main()
36 std::launch x = std::launch::async; in main()
37 x &= std::launch::deferred; in main()
38 assert(x == std::launch(0)); in main()
[all …]
/external/cronet/third_party/libc++/src/test/std/thread/futures/futures.overview/
Dlaunch.pass.cpp13 // enum class launch
28 LIBCPP_STATIC_ASSERT(static_cast<int>(std::launch::any) == in main()
29 … (static_cast<int>(std::launch::async) | static_cast<int>(std::launch::deferred)), ""); in main()
31 LIBCPP_STATIC_ASSERT(std::launch::any == (std::launch::async | std::launch::deferred), ""); in main()
32 static_assert(std::launch(0) == (std::launch::async & std::launch::deferred), ""); in main()
33 LIBCPP_STATIC_ASSERT(std::launch::any == (std::launch::async ^ std::launch::deferred), ""); in main()
34 LIBCPP_STATIC_ASSERT(std::launch::deferred == ~std::launch::async, ""); in main()
35 std::launch x = std::launch::async; in main()
36 x &= std::launch::deferred; in main()
37 assert(x == std::launch(0)); in main()
[all …]
/external/kotlinx.coroutines/kotlinx-coroutines-core/jvm/test/exceptions/
DJobExceptionHandlingTest.kt25 launch(job, start = ATOMIC) { in <lambda>()
62 val job = launch(parent) { in <lambda>()
86 val child = launch(job, start = ATOMIC) { in <lambda>()
104 * Child: launch inner child and cancels parent in <lambda>()
110 launch(job) { in <lambda>()
113 launch { in <lambda>()
139 * Launcher: launch child and cancel root in <lambda>()
140 * Child: launch nested child atomically and yields in <lambda>()
146 launch(job, start = ATOMIC) { in <lambda>()
148 launch(start = ATOMIC) { in <lambda>()
[all …]
DJobNestedExceptionsTest.kt18 launch(job) { in testExceptionUnwrapping()
20 launch { in testExceptionUnwrapping()
21 launch { in testExceptionUnwrapping()
22 launch { in testExceptionUnwrapping()
42 launch(job) { in testExceptionUnwrappingWithSuspensions()
44 launch { in testExceptionUnwrappingWithSuspensions()
45 launch { in testExceptionUnwrappingWithSuspensions()
46 launch { in testExceptionUnwrappingWithSuspensions()
47 launch { in testExceptionUnwrappingWithSuspensions()
71 … val job = launch(NonCancellable + CoroutineName("outer"), start = CoroutineStart.ATOMIC) { in testNestedAtomicThrow()
[all …]
/external/tensorflow/tensorflow/compiler/mlir/tensorflow/transforms/
Dlaunch_to_device_attribute.cc38 // Assign all ops in region with specified device from launch.
40 tf_device::LaunchOp launch, in AssignDevicesInRegion() argument
47 op->setAttr(kDeviceAttr, launch.deviceAttr()); in AssignDevicesInRegion()
53 op->setAttr(kDeviceAttr, launch.deviceAttr()); in AssignDevicesInRegion()
55 } else if (device_str_attr.getValue() != launch.device()) { in AssignDevicesInRegion()
56 return launch.emitOpError() in AssignDevicesInRegion()
60 << launch.device() << "'"; in AssignDevicesInRegion()
63 return launch.emitOpError() in AssignDevicesInRegion()
74 tf_device::LaunchOp launch) { in HoistOpsAndAnnotateWithDevice() argument
75 // Forward launch inner op results to launch op results. in HoistOpsAndAnnotateWithDevice()
[all …]
Dhost_launch_to_outside_compiled.cc51 void HoistOpsAndAnnotateWithOutsideCompilation(tf_device::LaunchOp launch) { in HoistOpsAndAnnotateWithOutsideCompilation() argument
52 // Forward launch inner op results to launch op results. in HoistOpsAndAnnotateWithOutsideCompilation()
53 launch.replaceAllUsesWith(launch.GetBody().getTerminator()->getOperands()); in HoistOpsAndAnnotateWithOutsideCompilation()
55 // For all inner ops, assign the launch device as a `device` attribute. in HoistOpsAndAnnotateWithOutsideCompilation()
56 MarkOutsideCompiledInRegion(launch.body()); in HoistOpsAndAnnotateWithOutsideCompilation()
58 // Move all inner ops of the launch to the block containing the launch. in HoistOpsAndAnnotateWithOutsideCompilation()
59 auto body = launch.GetBody().without_terminator(); in HoistOpsAndAnnotateWithOutsideCompilation()
60 Operation* launch_op = launch.getOperation(); in HoistOpsAndAnnotateWithOutsideCompilation()
62 launch_op->getIterator(), launch.GetBody().getOperations(), body.begin(), in HoistOpsAndAnnotateWithOutsideCompilation()
65 launch.erase(); in HoistOpsAndAnnotateWithOutsideCompilation()
[all …]
/external/tensorflow/tensorflow/compiler/mlir/tensorflow/tests/
Dlaunch_to_device_attribute.mlir1 // RUN: tf-opt %s -split-input-file -verify-diagnostics -tf-launch-to-device-attribute | FileCheck …
5 // by parent `tf_device.launch`.
11 %launch:2 = "tf_device.launch"() ({
16 … tf_executor.yield %a, %launch#0, %launch#1, %c : tensor<i1>, tensor<f32>, tensor<i32>, tensor<i1>
27 // CHECK-NOT: "tf_device.launch"
32 // assigned by parent `tf_device.launch`.
38 %launch:2 = "tf_device.launch"() ({
44 … tf_executor.yield %a, %launch#0, %launch#1, %d : tensor<i1>, tensor<f32>, tensor<i32>, tensor<i1>
57 // CHECK-NOT: "tf_device.launch"
66 %launch:2 = "tf_device.launch"() ({
[all …]
Ddevice_attribute_to_launch.mlir1 // RUN: tf-opt %s -split-input-file -tf-device-attribute-to-launch | FileCheck %s
3 // Tests that single TensorFlow op with device attribute is wrapped in `tf_device.launch` with the …
6 // CHECK: "tf_device.launch"
15 // Tests that usage of wrapped op is replaced by launch return
18 // CHECK: %[[LAUNCH_OUT:.*]] = "tf_device.launch"
28 // Tests that single TensorFlow op with no device attribute is not wrapped in `tf_device.launch`.
31 // CHECK-NOT: "tf_device.launch"
37 // Tests that single TensorFlow op with empty device attribute is not wrapped in `tf_device.launch`.
40 // CHECK-NOT: "tf_device.launch"
46 …sts that an op not in tf dialect (tf_device.launch) with device attribute is not wrapped in `tf_de…
[all …]
/external/lottie/lottie-compose/src/test/java/com/airbnb/lottie/compose/
DLottieAnimatableImplTest.kt8 import kotlinx.coroutines.launch in <lambda>()
36 launch { in <lambda>()
53 launch { in <lambda>()
66 launch { in <lambda>()
81 val job = launch { in <lambda>()
93 val job = launch { in <lambda>()
106 launch { in <lambda>()
118 launch { in <lambda>()
129 launch { in <lambda>()
141 launch { in <lambda>()
[all …]
/external/ms-tpm-20-ref/Samples/Nucleo-TPM/L4A6RG/
DNucleo-L4A6RG.elf.launch2 <launchConfiguration type="com.atollic.hardwaredebug.launch.launchConfigurationType">
15 <stringAttribute key="com.atollic.hardwaredebug.launch.analyzeCommands" value="# Set flash parallel…
16 <booleanAttribute key="com.atollic.hardwaredebug.launch.enable_live_expr" value="true"/>
17 <intAttribute key="com.atollic.hardwaredebug.launch.formatVersion" value="2"/>
18 <stringAttribute key="com.atollic.hardwaredebug.launch.hwinitCommands" value="# Initialize your har…
19 <stringAttribute key="com.atollic.hardwaredebug.launch.ipAddress" value="localhost"/>
20 <stringAttribute key="com.atollic.hardwaredebug.launch.jtagDevice" value="SEGGER J-LINK"/>
21 <intAttribute key="com.atollic.hardwaredebug.launch.portNumber" value="2331"/>
22 <stringAttribute key="com.atollic.hardwaredebug.launch.remoteCommand" value="target extended-remote…
23 <stringAttribute key="com.atollic.hardwaredebug.launch.runCommands" value="# Default GDB command fi…
[all …]
/external/ms-tpm-20-ref/Samples/Nucleo-TPM/L476RG/
DNucleo-L476RG.elf.launch2 <launchConfiguration type="com.atollic.hardwaredebug.launch.launchConfigurationType">
15 <stringAttribute key="com.atollic.hardwaredebug.launch.analyzeCommands" value="# Set flash parallel…
16 <booleanAttribute key="com.atollic.hardwaredebug.launch.enable_live_expr" value="true"/>
17 <intAttribute key="com.atollic.hardwaredebug.launch.formatVersion" value="2"/>
18 <stringAttribute key="com.atollic.hardwaredebug.launch.hwinitCommands" value="# Initialize your har…
19 <stringAttribute key="com.atollic.hardwaredebug.launch.ipAddress" value="localhost"/>
20 <stringAttribute key="com.atollic.hardwaredebug.launch.jtagDevice" value="SEGGER J-LINK"/>
21 <intAttribute key="com.atollic.hardwaredebug.launch.portNumber" value="2331"/>
22 <stringAttribute key="com.atollic.hardwaredebug.launch.remoteCommand" value="target extended-remote…
23 <stringAttribute key="com.atollic.hardwaredebug.launch.runCommands" value="# Default GDB command fi…
[all …]
/external/kotlinx.coroutines/kotlinx-coroutines-core/jvm/test/scheduling/
DBlockingCoroutineDispatcherTest.kt21 val blockingJob = launch(blockingDispatcher.value) { in <lambda>()
25 val nonBlockingJob = launch(dispatcher) { in <lambda>()
38 val blocking = launch(blockingDispatcher.value) { in <lambda>()
40 launch(dispatcher) { in <lambda>()
55 val blocking = launch(blockingDispatcher.value) { in testScheduleBlockingThreadCount()
56 launch(blockingDispatcher.value) { in testScheduleBlockingThreadCount()
70 val tasks = (1..tasksNum).map { launch(blockingDispatcher.value) { barrier.await() } } in <lambda>()
72 val cpuTask = launch(dispatcher) { in <lambda>()
90 …listOf(launch(blockingDispatcher) { firstBarrier.await() }, launch(blockingDispatcher2) { secondBa… in <lambda>()
94 launch(dispatcher) { in <lambda>()
[all …]
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/test/
DUnconfinedTest.kt14 launch(Dispatchers.Unconfined) { in <lambda>()
16 launch { in <lambda>()
18 launch { in <lambda>()
22 launch { in <lambda>()
45 launch(start = CoroutineStart.ATOMIC) { in <lambda>()
58 launch(Unconfined) { in <lambda>()
62 launch(Unconfined) { in <lambda>()
66 launch(Unconfined) { in <lambda>()
76 launch(Dispatchers.Unconfined) { in <lambda>()
79 launch { in <lambda>()
[all …]
DCoroutinesTest.kt29 val job = launch { in <lambda>()
44 val job = launch(start = CoroutineStart.UNDISPATCHED) { in <lambda>()
59 val j1 = launch { in <lambda>()
61 val j2 = launch { in <lambda>()
76 launch { in <lambda>()
90 val job = launch { in <lambda>()
105 val job = launch { in <lambda>()
124 launch { in <lambda>()
126 launch { in <lambda>()
156 launch { in <lambda>()
[all …]
DExperimentalDispatchModeTest.kt13 launch(parent) { in <lambda>()
16 launch(Dispatchers.Unconfined) { in <lambda>()
27 launch(parent) { in <lambda>()
30 val job = launch(Dispatchers.Unconfined) { in <lambda>()
44 launch(parent) { in <lambda>()
46 val job = launch(Dispatchers.Unconfined, start = CoroutineStart.LAZY) { in <lambda>()
61 launch(parent) { in <lambda>()
64 launch(start = CoroutineStart.UNDISPATCHED) { in <lambda>()
77 launch(parent) { in <lambda>()
80 launch(Dispatchers.Unconfined, start = CoroutineStart.ATOMIC) { in <lambda>()
[all …]
/external/perfetto/test/trace_processor/diff_tests/metrics/startup/
Dandroid_startup_installd_dex2oat_slow.out64 slow_start_reason: "dex2oat running during launch"
67 reason: "dex2oat running during launch"
111 slow_start_reason: "dex2oat running during launch"
112 slow_start_reason: "installd running during launch"
113 slow_start_reason: "Startup running concurrent to launch"
116 reason: "dex2oat running during launch"
129 reason: "installd running during launch"
142 reason: "Startup running concurrent to launch"
185 slow_start_reason: "dex2oat running during launch"
186 slow_start_reason: "installd running during launch"
[all …]
/external/kotlinx.coroutines/kotlinx-coroutines-test/common/test/
DTestCoroutineSchedulerTest.kt28 launch { in <lambda>()
53 launch { in <lambda>()
58 launch { in <lambda>()
64 launch { in <lambda>()
86 launch { in <lambda>()
112 launch { in <lambda>()
118 launch { in <lambda>()
141 scope.launch { in <lambda>()
143 launch { in <lambda>()
166 scope.launch { in <lambda>()
[all …]
DTestScopeTest.kt93 scope.launch { in <lambda>()
109 scope.launch { in <lambda>()
125 val job = scope.launch { in <lambda>()
141 scope.launch { in <lambda>()
162 launch(SupervisorJob()) { throw TestException("x") } in <lambda>()
163 launch(SupervisorJob()) { throw TestException("y") } in <lambda>()
164 launch(SupervisorJob()) { throw TestException("z") } in <lambda>()
179 backgroundScope.launch { in <lambda>()
182 backgroundScope.launch { in <lambda>()
208 backgroundScope.launch { in <lambda>()
[all …]
/external/kotlinx.coroutines/kotlinx-coroutines-test/jvm/test/migration/
DRunBlockingTestOnTestScopeTest.kt38 launch { in <lambda>()
69 job = launch { in <lambda>()
85 launch { in <lambda>()
97 launch { in <lambda>()
133 launch(SupervisorJob()) { throw TestException("x") } in <lambda>()
134 launch(SupervisorJob()) { throw TestException("y") } in <lambda>()
135 launch(SupervisorJob()) { throw TestException("z") } in <lambda>()
162 launch(SupervisorJob()) { throw TestException("x") } in <lambda>()
171 backgroundScope.launch { in <lambda>()
175 backgroundScope.launch { in <lambda>()
[all …]
DTestRunBlockingTest.kt34 val job = launch { in <lambda>()
147 val job = launch { in <lambda>()
163 val job = launch { in <lambda>()
191 val job = launch { in <lambda>()
224 launch { in <lambda>()
253 launch { in <lambda>()
256 launch { in <lambda>()
271 val job = launch { in <lambda>()
283 val job = launch { in <lambda>()
296 launch { in <lambda>()
[all …]
/external/libcap/cap/
Dlaunch.go22 // both be empty. In such cases .Launch() will error out.
82 // Callback changes the callback function for Launch() to call before
84 // thread in use to call this callback function at launch time will be
85 // the one that ultimately calls fork to complete the launch of a path
87 // will terminate the launch process.
90 // Launch() sequence - it will remove any pre-existing callback.
93 // run, they can be raised prior to calling .Launch() or inside the
98 // the launch goroutine itself. While the launch is in progress, other
99 // (non-launch) goroutines will block if they attempt to change
104 // *syscall.ProcAttr value to be used when a process launch is taking
[all …]
/external/cronet/third_party/metrics_proto/
Dchrome_os_app_list_launch_event.proto12 // Provides information about the launch of an item (such as an app or a file)
13 // from the ChromeOS launcher. One event is recorded for every launch
22 // A per-user, per-client ID that is used only for app list launch event
27 // perform a launch from.
29 // No launch type specified. This is invalid and will cause the event to be
44 // String length of the search query associated with this launch. If there was
50 // The hashed target item of the launch, eg. an app ID, filepath, or omnibox
54 // The hashed search query associated with the launch. Before hashing, the
55 // query is the empty string if there is no search query for this launch.
58 // Hashed of the most-recently-visited domain when this launch occurred.
[all …]
/external/kotlinx.coroutines/docs/topics/
Dcoroutines-basics.md23 launch { // launch a new coroutine and continue
48 [launch] is a _coroutine builder_. It launches a new coroutine concurrently with
59 …move or forget `runBlocking` in this code, you'll get an error on the [launch] call, since `launch`
63 Unresolved reference: launch
84 Let's extract the block of code inside `launch { ... }` into a separate function. When you
95 launch { doWorld() }
139 launch {
165 Let's launch two concurrent coroutines inside a `doWorld` suspending function:
179 launch {
183 launch {
[all …]

12345678910>>...106