/packages/modules/Bluetooth/system/gd/rust/facade/helpers/ |
D | lib.rs | 22 running: bool, field 33 Self { rx, running: false } in from_arc() 38 assert!(!self.running); in stream_grpc() 39 self.running = true; in stream_grpc() 59 assert!(!self.running); in stream_runnable() 60 self.running = true; in stream_runnable()
|
/packages/modules/Bluetooth/tools/rootcanal/test/ |
D | async_manager_unittest.cc | 228 Event running; in TEST_F() local 230 async_manager_.ExecAsyncPeriodically(1, 1ms, 2ms, [&running, this]() { in TEST_F() 235 running.set(true); in TEST_F() 238 EXPECT_TRUE(running.wait_for(10ms)); in TEST_F() 243 Event running; in TEST_F() local 247 1, 1ms, 2ms, [&running, &cancel_done, &task_complete]() { in TEST_F() 249 running.set(true); in TEST_F() 257 EXPECT_TRUE(running.wait_for(10ms)); in TEST_F()
|
/packages/apps/Nfc/src/com/android/nfc/echoserver/ |
D | EchoServer.java | 171 boolean running = true; field in EchoServer.ServerThread 218 while (running) { in run() 227 running = false; in run() 230 running = false; in run() 264 running = false; in shutdown()
|
/packages/services/Car/cpp/evs/sampleDriver/hidl/ |
D | service.cpp | 59 std::atomic<bool> running { true }; in main() local 60 std::thread hotplugHandler(EvsEnumerator::EvsHotplugThread, std::ref(running)); in main() 78 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/apps/Gallery2/ |
D | proguard.flags | 62 # - Required for running exif tests on userdebug 70 # - Required for running blobcache tests on userdebug 73 # - Required for running glcanvas tests on userdebug 84 # - Required for running jpeg stream tests on userdebug
|
/packages/apps/Nfc/src/com/android/nfc/handover/ |
D | HandoverServer.java | 178 boolean running; in run() 180 running = mServerRunning; in run() 186 while (running) { in run() 236 running = mServerRunning; in run()
|
/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/modules/adb/ |
D | SERVICES.TXT | 12 ADB client detects that an obsolete server is running after an 35 emulator will forward automatically to the adbd daemon running 44 be sent directly to the adbd daemon running on the device. 55 running. (Used to implement the -e convenience option) 59 either the device or emulator connect to/running on the host. 75 running on the host. This will fail if there is none or more than one. 79 interpreted as 'any single device or emulator connected to/running on 215 Connects to the JDWP thread running in the VM of process <pid>. 225 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/apps/DeskClock/src/com/android/deskclock/data/ |
D | TimerNotificationBuilder.kt | 68 val running = timer.isRunning in build() constant 78 if (running) { in build() 130 stateText = if (running) { in build() 176 notification.setCustomContentView(buildChronometer(pname, base, running, stateText)) in build() 184 running -> { in build() 389 running: Boolean, in buildChronometer() 394 content.setChronometer(R.id.chronometer, base, null, running) in buildChronometer()
|
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()
|
/packages/apps/Nfc/src/com/android/nfc/snep/ |
D | SnepServer.java | 113 boolean running; in run() 115 running = mServerRunning; in run() 118 while (running) { in run() 124 running = mServerRunning; in run()
|
/packages/apps/Nfc/src/com/android/nfc/sneptest/ |
D | ExtDtaSnepServer.java | 88 boolean running; in run() 90 running = mServerRunning; in run() 93 while (running) { in run() 98 running = mServerRunning; in run()
|
/packages/modules/DnsResolver/tests/ |
D | resolv_test_base.h | 41 std::string getTestCaseLog(bool running) { in getTestCaseLog() argument 43 return fmt::format("{}: {}#{}", (running ? "started" : "finished"), in getTestCaseLog()
|
/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/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/Bluetooth/system/udrv/ulinux/ |
D | uipc.cc | 180 uipc.running = 0; in uipc_main_init() 423 while (uipc.running) { in uipc_read_task() 470 uipc.running = 1; in uipc_start_main_server_thread() 486 uipc.running = 0; in uipc_stop_main_server_thread()
|
/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() 93 .append(running ? " (running)" : "") in getStatus()
|
/packages/modules/Bluetooth/android/pandora/server/ |
D | README.md | 44 communications. It is used by default within Cuttlefish when running it using the [acloud](go/aclou… 57 * If running virtual tests (such as PTS-bot) on a physical device: 108 * **DUT**: virtual (running in remote instance)
|
/packages/services/Car/tests/SampleCustomInputService/ |
D | readme.md | 36 ran tests. Depending on the configuration you use, running SampleCustomInputServiceTest may 41 For this example, press home first, then inject the event to start Maps activity by running:
|
/packages/modules/adb/pairing_connection/ |
D | Android.bp | 103 // For running atest (b/147158681) 185 // For running atest (b/147158681)
|
/packages/modules/Virtualization/ |
D | README.md | 3 This repository contains userspace services related to running virtual machines on Android,
|
/packages/modules/NeuralNetworks/driver/sample_shim/ |
D | generate_prebuilts.sh | 8 echo you must run lunch before running this script
|