Home
last modified time | relevance | path

Searched refs:Sync (Results 1 – 25 of 62) sorted by relevance

123

/aosp12/system/bt/gd/rust/gddi/src/
H A Dlib.rs12 type InstanceBox = Box<dyn Any + Send + Sync>;
14 pub type ProviderFutureBox = Box<dyn Future<Output = Box<dyn Any>> + Send + Sync>;
15 type ProviderFnBox = Box<dyn Fn(Arc<Registry>) -> Pin<ProviderFutureBox> + Send + Sync>;
32 start_order: Arc<Mutex<Vec<Box<dyn Stoppable + Send + Sync>>>>,
79 pub async fn get<T: 'static + Clone + Send + Sync + Stoppable>(self: &Arc<Self>) -> T { in get()
104 pub async fn inject<T: 'static + Clone + Send + Sync>(self: &Arc<Self>, obj: T) { in inject()
/aosp12/build/soong/cc/
H A Dcc_test.go3729 Sync const
3737 case Sync:
3757 found = Sync
3876 checkHasMemtagNote(t, ctx.ModuleForTests("async_test", variant), Sync)
3888 checkHasMemtagNote(t, ctx.ModuleForTests("sync_test", variant), Sync)
3894 checkHasMemtagNote(t, ctx.ModuleForTests("sync_binary", variant), Sync)
3937 checkHasMemtagNote(t, ctx.ModuleForTests("async_test", variant), Sync)
3949 checkHasMemtagNote(t, ctx.ModuleForTests("sync_test", variant), Sync)
3955 checkHasMemtagNote(t, ctx.ModuleForTests("sync_binary", variant), Sync)
3999 checkHasMemtagNote(t, ctx.ModuleForTests("async_test", variant), Sync)
[all …]
/aosp12/system/bt/gd/rust/main/src/
H A Dlib.rs56 pub async fn get<T: 'static + Clone + Send + Sync + Stoppable>(&self) -> T { in get()
61 pub fn get_blocking<T: 'static + Clone + Send + Sync + Stoppable>(&self) -> T { in get_blocking()
66 pub async fn get_grpc<T: 'static + Clone + Send + Sync + GrpcFacade + Stoppable>( in get_grpc()
/aosp12/frameworks/native/opengl/specs/
H A DEGL_ANDROID_native_fence_sync.txt86 Add the following after the sixth paragraph of Section 3.8.1 (Sync
112 Modify Section 3.8.1 (Sync Objects), added by KHR_fence_sync, starting at
147 Modify the list of eglCreateSyncKHR errors in Section 3.8.1 (Sync Objects),
180 Modify table 3.cc in Section 3.8.1 (Sync Objects), added by KHR_fence_sync
183 Attribute Description Supported Sync Objects
192 3.8.1 (Sync Objects), added by KHR_fence_sync
200 Add the following after the last paragraph of Section 3.8.1 (Sync
/aosp12/system/extras/profcollectd/libprofcollectd/
H A Dconfig.rs116 T::Err: Error + Send + Sync + 'static, in get_device_config()
130 T::Err: Error + Send + Sync + 'static, in get_property()
/aosp12/system/logging/rust/
H A Dlogger.rs24 type FormatFn = Box<dyn Fn(&log::Record) -> String + Sync + Send>;
65 F: Fn(&log::Record) -> String + Sync + Send + 'static, in format()
/aosp12/system/core/fs_mgr/libsnapshot/
H A Dcow_writer.cpp214 if (!Sync()) { in OpenForWrite()
326 return WriteOperation(op) && Sync(); in EmitLabel()
464 return Sync(); in Finalize()
528 bool CowWriter::Sync() { in Sync() function in android::snapshot::CowWriter
/aosp12/hardware/interfaces/wifi/1.4/
H A Dtypes.hal126 * Force the Random Factor to the specified value for all transmitted Sync/Discovery beacons.
135 * Forces the hop-count for all transmitted Sync and Discovery Beacons NO matter the real
198 * Control whether publish service IDs are included in Sync/Discovery beacons.
205 * to include in the Sync/Discovery beacons:
212 * Control whether subscribe service IDs are included in Sync/Discovery beacons.
219 * IDs to include in the Sync/Discovery beacons:
/aosp12/system/bt/gd/rust/hci/src/
H A Derror.rs10 pub type Result<T> = std::result::Result<T, Box<dyn std::error::Error + Send + Sync>>;
/aosp12/system/tools/aidl/tests/golden_output/aidl-test-interface-rust-source/gen/android/aidl/tests/
H A DIDeprecated.rs22 pub trait IDeprecatedDefault: Send + Sync {
H A DINamedCallback.rs22 pub trait INamedCallbackDefault: Send + Sync {
H A DINewName.rs22 pub trait INewNameDefault: Send + Sync {
H A DIOldName.rs22 pub trait IOldNameDefault: Send + Sync {
/aosp12/system/security/keystore2/src/
H A Dasync_task.rs95 idle_fns: Vec<Arc<dyn Fn(&mut Shelf) + Send + Sync>>,
160 F: Fn(&mut Shelf) + Send + Sync + 'static, in add_idle()
200 IdleFns(Vec<Arc<dyn Fn(&mut Shelf) + Send + Sync>>), in spawn_thread()
H A Dmaintenance.rs54 delete_listener: Box<dyn DeleteListener + Send + Sync + 'static>,
60 delete_listener: Box<dyn DeleteListener + Send + Sync + 'static>, in new_native_binder()
/aosp12/hardware/interfaces/configstore/1.0/
H A DISurfaceFlingerConfigs.hal98 * Indicates if Sync framework is available. Sync framework provides fence
/aosp12/packages/apps/UniversalMediaPlayer/
H A DAndroid.bp23 min_sdk_version: "24", // TODO(b/123716038) Sync min SDK version with build.gradle
/aosp12/system/security/keystore2/selinux/src/
H A Dlib.rs33 use std::marker::{Send, Sync};
164 unsafe impl Sync for KeystoreKeyBackend {}
/aosp12/system/security/keystore2/apc_compat/
H A Dapc_compat.rs57 unsafe impl Sync for ApcHal {}
/aosp12/frameworks/native/libs/binder/rust/src/
H A Dbinder.rs89 pub trait Remotable: Send + Sync {
751 pub struct $native(Box<dyn $interface + Sync + Send + 'static>);
755 …pub fn new_binder<T: $interface + Sync + Send + 'static>(inner: T, features: $crate::BinderFeature…
/aosp12/system/bt/gd/rust/hal/src/
H A Dlib.rs101 type Result<T> = std::result::Result<T, Box<dyn std::error::Error + Send + Sync>>;
/aosp12/system/core/fs_mgr/libsnapshot/include/libsnapshot/
H A Dcow_writer.h132 bool Sync();
/aosp12/system/bt/gd/rust/facade/src/
H A Dlib.rs112 type Result<T> = std::result::Result<T, Box<dyn std::error::Error + Send + Sync>>;
/aosp12/frameworks/base/services/core/java/com/android/server/content/
H A DSyncManager.md1 # Sync Manager notes
3 ## App-standby and Sync Manager
/aosp12/art/libartbase/base/
H A Dmem_map.h229 bool Sync();

123