/packages/modules/adb/ |
D | SYNC.TXT | 9 Requesting the sync service ("sync:") using the protocol as described in 10 SERVICES.TXT sets the connection in sync mode. This mode is a binary mode that 11 differs from the regular adb protocol. The connection stays in sync mode until 14 After the initial "sync:" command is sent, the server must respond with either 17 In sync mode both the server and the client will frequently use eight-byte 18 packets to communicate. In this document these are called sync requests and sync 19 responses. The first four bytes constitute an id that specifies the sync request. 23 are Little-Endian in the sync mode. Sync mode is implicitly exited after each 24 sync request, and normal adb communication follows as described in SERVICES.TXT. 26 The following sync requests are accepted: [all …]
|
/packages/modules/Bluetooth/system/gd/rust/linux/dbus_projection/dbus_macros/src/ |
D | lib.rs | 75 let obj_type = quote! { std::sync::Arc<std::sync::Mutex<Box<T>>> }; in generate_dbus_exporter() 196 conn: std::sync::Arc<dbus::nonblock::SyncConnection>, in generate_dbus_exporter() 199 … disconnect_watcher: std::sync::Arc<std::sync::Mutex<dbus_projection::DisconnectWatcher>>, in generate_dbus_exporter() 202 conn: std::sync::Arc<dbus::nonblock::SyncConnection>, in generate_dbus_exporter() 204 … disconnect_watcher: std::sync::Arc<std::sync::Mutex<dbus_projection::DisconnectWatcher>>, in generate_dbus_exporter() 494 conn__: Option<std::sync::Arc<dbus::nonblock::SyncConnection>>, in dbus_propmap() 496 …disconnect_watcher__: Option<std::sync::Arc<std::sync::Mutex<dbus_projection::DisconnectWatcher>>>, in dbus_propmap() 627 conn: std::sync::Arc<dbus::nonblock::SyncConnection>, in dbus_proxy_obj() 630 disconnect_watcher: std::sync::Arc<std::sync::Mutex<DisconnectWatcher>>, in dbus_proxy_obj() 657 conn__: Option<std::sync::Arc<dbus::nonblock::SyncConnection>>, in dbus_proxy_obj() [all …]
|
/packages/services/Car/service/proto/android/car/watchdog/ |
D | atoms.proto | 29 * Keep in sync with proto file at frameworks/proto_logging/stats/atoms.proto 53 // Keep in sync with proto file at packages/services/Car/cpp/watchdog/proto 73 * Keep in sync with proto file at frameworks/proto_logging/stats/atoms.proto 86 * Keep in sync with proto file at frameworks/proto_logging/stats/atoms.proto 111 * Keep in sync with proto file at frameworks/proto_logging/stats/atoms.proto 127 * Keep in sync with proto file at frameworks/proto_logging/stats/atoms.proto 137 * Keep in sync with proto file at frameworks/proto_logging/stats/atoms.proto 165 * Keep in sync with proto file at 183 * Keep in sync with proto file at 204 * Keep in sync with proto file at [all …]
|
/packages/apps/TV/tests/func/src/com/android/tv/tests/ui/ |
D | LiveChannelsTestController.java | 59 private void assertPressKeyUp(int keyCode, boolean sync) { in assertPressKeyUp() argument 60 assertPressKey(KeyEvent.ACTION_UP, keyCode, sync); in assertPressKeyUp() 63 private void assertPressKey(int action, int keyCode, boolean sync) { in assertPressKey() argument 77 assertTrue("Failed to inject key up event:" + event, injectEvent(event, sync)); in assertPressKey() 168 public boolean injectEvent(KeyEvent event, boolean sync) { in injectEvent() argument 169 return getUiAutomation().injectInputEvent(event, sync); in injectEvent()
|
/packages/apps/Car/Settings/tests/robotests/src/com/android/car/settings/testutils/ |
D | ShadowContentResolver.java | 100 boolean sync, @UserIdInt int userId) { in setSyncAutomaticallyAsUser() argument 101 sSyncAutomatically.put(authority, sync); in setSyncAutomaticallyAsUser() 105 protected static void setMasterSyncAutomaticallyAsUser(boolean sync, @UserIdInt int userId) { in setMasterSyncAutomaticallyAsUser() argument 106 sMasterSyncAutomatically.put(userId, sync); in setMasterSyncAutomaticallyAsUser()
|
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/gatt/ |
D | PeriodicScanManager.java | 317 SyncInfo sync = null; in stopSync() local 319 sync = mSyncs.remove(binder); in stopSync() 321 if (sync == null) { in stopSync() 326 Integer syncHandle = sync.id; in stopSync() 327 binder.unlinkToDeath(sync.deathRecipient, 0); in stopSync() 340 cancelSyncNative(sync.advSid, sync.address); in stopSync()
|
/packages/apps/Dialer/java/com/android/voicemail/impl/ |
D | VvmPhoneStateListener.java | 22 import com.android.voicemail.impl.sync.SyncTask; 23 import com.android.voicemail.impl.sync.VoicemailStatusQueryHelper; 24 import com.android.voicemail.impl.sync.VvmAccountManager;
|
D | PinChangerImpl.java | 30 import com.android.voicemail.impl.sync.VvmNetworkRequest; 31 import com.android.voicemail.impl.sync.VvmNetworkRequest.NetworkWrapper; 32 import com.android.voicemail.impl.sync.VvmNetworkRequest.RequestFailedException;
|
D | VoicemailClientReceiver.java | 27 import com.android.voicemail.impl.sync.UploadTask; 28 import com.android.voicemail.impl.sync.VvmAccountManager;
|
/packages/modules/Bluetooth/system/gd/rust/facade/helpers/ |
D | lib.rs | 7 use std::sync::Arc; 9 use tokio::sync::mpsc::Receiver; 10 use tokio::sync::Mutex;
|
/packages/apps/Dialer/java/com/android/voicemail/impl/sms/ |
D | OmtpMessageReceiver.java | 38 import com.android.voicemail.impl.sync.SyncOneTask; 39 import com.android.voicemail.impl.sync.SyncTask; 40 import com.android.voicemail.impl.sync.VoicemailsQueryHelper; 41 import com.android.voicemail.impl.sync.VvmAccountManager;
|
/packages/apps/Settings/tests/robotests/src/com/android/settings/testutils/shadow/ |
D | ShadowContentResolver.java | 72 boolean sync, int userId) { in setSyncAutomaticallyAsUser() argument 84 protected static void setMasterSyncAutomaticallyAsUser(boolean sync, @UserIdInt int userId) { in setMasterSyncAutomaticallyAsUser() argument 85 sMasterSyncAutomatically.put(userId, sync); in setMasterSyncAutomaticallyAsUser()
|
/packages/modules/Bluetooth/system/gd/rust/stack/src/hal/ |
D | mod.rs | 42 use std::sync::Arc; 43 use tokio::sync::mpsc::{unbounded_channel, UnboundedReceiver, UnboundedSender}; 44 use tokio::sync::Mutex;
|
D | hidl_hal.rs | 5 use std::sync::Arc; 6 use std::sync::Mutex; 9 use tokio::sync::mpsc::{unbounded_channel, UnboundedReceiver, UnboundedSender};
|
/packages/modules/Bluetooth/system/gd/rust/linux/stack/src/ |
D | lib.rs | 16 use std::sync::{Arc, Mutex}; 17 use tokio::sync::mpsc::channel; 18 use tokio::sync::mpsc::{Receiver, Sender};
|
/packages/modules/Bluetooth/system/gd/rust/gddi/src/ |
D | lib.rs | 7 use std::sync::Arc; 8 use tokio::sync::Mutex; 119 impl<T> Stoppable for std::sync::Arc<T> {}
|
/packages/modules/Bluetooth/system/gd/rust/topshim/facade/src/ |
D | adapter_service.rs | 15 use std::sync::{Arc, Mutex}; 17 use tokio::sync::mpsc; 18 use tokio::sync::Mutex as TokioMutex;
|
/packages/modules/Bluetooth/system/gd/rust/stack/src/hci/ |
D | error.rs | 6 use tokio::sync::mpsc::error::SendError; 7 use tokio::sync::oneshot::error::RecvError;
|
/packages/modules/Bluetooth/system/gd/hci/ |
D | le_periodic_sync_manager.h | 390 auto sync = GetSyncFromAddressWithTypeAndSid(address_with_type, adv_sid); in OnStartSyncTimeout() local 396 sync->request_id, status, 0, sync->advertiser_sid, request.address_with_type, 0, 0); in OnStartSyncTimeout() 397 RemoveSyncRequest(sync); in OnStartSyncTimeout() 459 auto sync = GetSyncFromAddressWithTypeAndSid(address_with_type, sid); in HandleStartSyncRequest() local 460 sync->sync_state = PERIODIC_SYNC_STATE_PENDING; in HandleStartSyncRequest()
|
/packages/modules/Bluetooth/system/gd/rust/facade/src/ |
D | lib.rs | 11 use std::sync::Arc; 13 use tokio::sync::mpsc::{channel, Sender}; 14 use tokio::sync::oneshot;
|
/packages/modules/Bluetooth/system/gd/rust/linux/dbus_projection/src/ |
D | lib.rs | 54 use std::sync::{Arc, Mutex}; 171 Arc<std::sync::Mutex<dbus_projection::DisconnectWatcher>>, 202 Arc<std::sync::Mutex<dbus_projection::DisconnectWatcher>>,
|
/packages/apps/Gallery2/jni/ |
D | jni_egl_fence.cpp | 29 EGLSyncKHR sync); 31 EGLSyncKHR sync, EGLint flags, EGLTimeKHR timeout);
|
/packages/apps/Dialer/java/com/android/voicemail/impl/sync/ |
D | UploadTask.java | 17 package com.android.voicemail.impl.sync; 65 service.sync( in onExecuteInBackgroundThread()
|
D | OmtpVvmSyncService.java | 16 package com.android.voicemail.impl.sync; 42 import com.android.voicemail.impl.sync.VvmNetworkRequest.NetworkWrapper; 43 import com.android.voicemail.impl.sync.VvmNetworkRequest.RequestFailedException; 67 public void sync( in sync() method in OmtpVvmSyncService
|
/packages/services/Car/ |
D | PREUPLOAD.cfg | 4 … in sync with service/res/values/config.xml. You have added/removed config resources in config.xml…
|