/packages/modules/ImsMedia/test/app/ImsMediaTestingApp/app/src/main/java/com/example/imsmediatestingapp/ |
D | HandshakeReceiver.java | 23 private boolean running = true; field in HandshakeReceiver 46 while (running) { in run() 63 running = false; in run() 112 running = false; in close()
|
/packages/modules/Bluetooth/tools/rootcanal/test/ |
D | async_manager_unittest.cc | 229 Event running; in TEST_F() local 231 async_manager_.ExecAsyncPeriodically(1, 1ms, 2ms, [&running, this]() { in TEST_F() 236 running.set(true); in TEST_F() 239 EXPECT_TRUE(running.wait_for(100ms)); in TEST_F() 244 Event running; in TEST_F() local 248 1, 1ms, 2ms, [&running, &cancel_done, &task_complete]() { in TEST_F() 250 running.set(true); in TEST_F() 258 EXPECT_TRUE(running.wait_for(100ms)); in TEST_F()
|
/packages/services/Car/cpp/evs/sampleDriver/hidl/ |
D | service.cpp | 56 std::atomic<bool> running{true}; in main() local 57 std::thread hotplugHandler(EvsEnumerator::EvsHotplugThread, std::ref(running)); in main() 75 running = false; in main()
|
/packages/services/Car/cpp/evs/sampleDriver/aidl/src/ |
D | service.cpp | 68 std::atomic<bool> running{true}; in main() local 69 std::thread hotplugHandler(EvsEnumerator::EvsHotplugThread, service, std::ref(running)); in main() 92 running = false; in main()
|
/packages/modules/Connectivity/clatd/ |
D | clatd.c | 52 volatile sig_atomic_t running = 1; variable 84 running = 0; in process_packet_6_to_4() 167 running = 0; in process_packet_4_to_6() 292 while (running) { in event_loop()
|
D | main.c | 40 static void stop_loop() { running = 0; }; in stop_loop() 195 if (running) { in main() 202 running ? "timed out waiting for" : "received"); in main()
|
/packages/apps/Gallery2/ |
D | proguard.flags | 67 # - Required for running exif tests on userdebug 75 # - Required for running blobcache tests on userdebug 78 # - Required for running glcanvas tests on userdebug 89 # - Required for running jpeg stream tests on userdebug
|
/packages/modules/Connectivity/staticlibs/netd/libnetdutils/include/netdutils/ |
D | NetNativeTestBase.h | 41 std::string getTestCaseLog(bool running) { in getTestCaseLog() argument 43 return fmt::format("{}: {}#{}", (running ? "started" : "finished"), in getTestCaseLog()
|
/packages/modules/adb/daemon/ |
D | usb.cpp | 263 bool running = true; in StartMonitor() local 264 while (running) { in StartMonitor() 305 running = false; in StartMonitor() 311 running = false; in StartMonitor() 321 running = false; in StartMonitor() 327 running = false; in StartMonitor() 345 running = false; in StartMonitor() 358 running = false; in StartMonitor()
|
/packages/apps/DeskClock/src/com/android/deskclock/data/ |
D | StopwatchNotificationBuilder.kt | 68 val running = stopwatch!!.isRunning in build() constant 74 content.setChronometer(R.id.chronometer, base, null, running) in build() 78 if (running) { in build() 139 .setOngoing(running) in build()
|
D | TimerNotificationBuilder.kt | 79 val running = timer.isRunning in build() constant 89 if (running) { in build() 141 stateText = if (running) { in build() 187 notification.setCustomContentView(buildChronometer(pname, base, running, stateText)) in build() 195 running -> { in build() 400 running: Boolean, in buildChronometer() 405 content.setChronometer(R.id.chronometer, base, null, running) in buildChronometer()
|
/packages/modules/adb/ |
D | SERVICES.TXT | 12 ADB client detects that an obsolete server is running after an 37 emulator will forward automatically to the adbd daemon running 46 be sent directly to the adbd daemon running on the device. 57 running. (Used to implement the -e convenience option) 61 either the device or emulator connect to/running on the host. 77 running on the host. This will fail if there is none or more than one. 81 interpreted as 'any single device or emulator connected to/running on 195 useful for allowing test automation running on host (not Android 246 Connects to the JDWP thread running in the VM of process <pid>. 256 This service is used by DDMS to know which debuggable processes are running
|
D | OVERVIEW.TXT | 8 connected to or running on a given host developer machine 71 between the client and the service running in adbd. In this case 125 - Local transports, for emulators running on the host, connected to 130 running on another machine. This hasn't been done yet though.
|
/packages/services/Car/tests/BugReportApp/ |
D | README.md | 10 3. BugReportActivity connects to BugReportService and checks if a bugreporting is running. 11 4. If bugreporting is already running it shows in progress dialog 17 8. BugReportService running under current user (e.g. u10) starts collecting logs using dumpstate, 19 9. BugStorageProvider is running under u0, it schedules UploadJob.
|
/packages/modules/AdServices/adservices/libraries/cobalt/proto/ |
D | common.proto | 63 // This is a string representing the type of product running on the device. 66 // experience running on the device, e.g., "smart display" or "workstation". 69 // This is a string representing the version of the currently running system. 77 // There can be multiple apps running on the system and updated separately
|
/packages/modules/Virtualization/docs/debug/ |
D | gdb_userspace.md | 3 Like a normal adb device, you can debug native processes running on a 5 running a new process, or attaching to an existing process. Use `vm_shell`
|
D | tracing.md | 164 2. Set up an adb connection with the running VM: 170 Where `${CID}` corresponds to the running Microdroid VM that you want to establish adb connection 171 with. List of running VMs can be obtained by running `adb shell /apex/com.android.virt/bin/vm list`. 172 Alternatively you can use `vm_shell` utility to connect to a running VM, i.e.: `vm_shell connect`.
|
/packages/modules/Virtualization/java/framework/ |
D | README.md | 3 These Java APIs allow an app to configure and run a Virtual Machine running 15 not exist in devices running an earlier version. 98 Here we are running a protected VM, which will execute the code in the 138 - `onPayloadReady()`: The VM payload is running and ready to accept 147 - `onStopped()`: The VM is no longer running. This is the final notification 154 - `STATUS_STOPPED`: The VM is not running - either it has not yet been started, 155 or it stopped after running. 156 - `STATUS_RUNNING`: The VM is running. Your payload inside the VM may not be 157 running, since the VM may be in the process of starting or stopping. 181 - The code running in the VM, including the bootloader, kernel, Microdroid and [all …]
|
/packages/modules/Virtualization/docs/ |
D | updatable_vm.md | 45 Sealing Policy is a DICE policy on the DICE chain of the payload running in Microdroid. This is 53 being accessible to another instance running with the same VM images. 74 allowed to run. This prevented running of older images, but also prevented running newer images and 92 running i.e, Updatable VMs are not supported.
|
/packages/modules/NeuralNetworks/tools/ |
D | build_and_run_benchmark.sh | 18 echo you must run lunch before running this script 67 echo running $NUMBER_RUNS times
|
/packages/modules/Virtualization/ |
D | README.md | 30 * [Building and running a demo app in Java](demo/README.md) 31 * [Building and running a demo app in C++](demo_native/README.md)
|
/packages/modules/Bluetooth/system/test/ |
D | README.md | 5 The tests are designed to be run when the Android runtime is not running. From a terminal, run: 42 running...
|
/packages/services/Car/tests/EmbeddedKitchenSinkApp/src/com/google/android/car/kitchensink/users/ |
D | UserInfoView.java | 88 boolean running = am.isUserRunning(user.id); in getStatus() 92 .append(running ? " (running)" : "") in getStatus()
|
/packages/modules/Bluetooth/floss/build/ |
D | README.md | 40 If you use the `docker` binary, add the flag: `--use-docker` when running 58 source to `/root/src` before running these commands in the container:
|
/packages/modules/Bluetooth/system/udrv/ulinux/ |
D | uipc.cc | 183 uipc.running = 0; in uipc_main_init() 424 while (uipc.running) { in uipc_read_task() 471 uipc.running = 1; in uipc_start_main_server_thread() 487 uipc.running = 0; in uipc_stop_main_server_thread()
|