/aosp12/system/bt/gd/rust/gddi/src/ |
H A D | lib.rs | 12 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 D | cc_test.go | 3729 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 D | lib.rs | 56 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 D | EGL_ANDROID_native_fence_sync.txt | 86 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 D | config.rs | 116 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 D | logger.rs | 24 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 D | cow_writer.cpp | 214 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 D | types.hal | 126 * 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 D | error.rs | 10 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 D | IDeprecated.rs | 22 pub trait IDeprecatedDefault: Send + Sync {
|
H A D | INamedCallback.rs | 22 pub trait INamedCallbackDefault: Send + Sync {
|
H A D | INewName.rs | 22 pub trait INewNameDefault: Send + Sync {
|
H A D | IOldName.rs | 22 pub trait IOldNameDefault: Send + Sync {
|
/aosp12/system/security/keystore2/src/ |
H A D | async_task.rs | 95 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 D | maintenance.rs | 54 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 D | ISurfaceFlingerConfigs.hal | 98 * Indicates if Sync framework is available. Sync framework provides fence
|
/aosp12/packages/apps/UniversalMediaPlayer/ |
H A D | Android.bp | 23 min_sdk_version: "24", // TODO(b/123716038) Sync min SDK version with build.gradle
|
/aosp12/system/security/keystore2/selinux/src/ |
H A D | lib.rs | 33 use std::marker::{Send, Sync}; 164 unsafe impl Sync for KeystoreKeyBackend {}
|
/aosp12/system/security/keystore2/apc_compat/ |
H A D | apc_compat.rs | 57 unsafe impl Sync for ApcHal {}
|
/aosp12/frameworks/native/libs/binder/rust/src/ |
H A D | binder.rs | 89 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 D | lib.rs | 101 type Result<T> = std::result::Result<T, Box<dyn std::error::Error + Send + Sync>>;
|
/aosp12/system/core/fs_mgr/libsnapshot/include/libsnapshot/ |
H A D | cow_writer.h | 132 bool Sync();
|
/aosp12/system/bt/gd/rust/facade/src/ |
H A D | lib.rs | 112 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 D | SyncManager.md | 1 # Sync Manager notes 3 ## App-standby and Sync Manager
|
/aosp12/art/libartbase/base/ |
H A D | mem_map.h | 229 bool Sync();
|