/hardware/interfaces/security/keymint/aidl/default/ta/ |
D | lib.rs | 45 let clock = clock::StdClock::new(); in boringssl_crypto_impls() 49 rng: Box::new(rng), in boringssl_crypto_impls() 50 clock: Some(Box::new(clock)), in boringssl_crypto_impls() 51 compare: Box::new(BoringEq), in boringssl_crypto_impls() 52 aes: Box::new(BoringAes), in boringssl_crypto_impls() 53 des: Box::new(BoringDes), in boringssl_crypto_impls() 54 hmac: Box::new(BoringHmac), in boringssl_crypto_impls() 55 rsa: Box::new(rsa), in boringssl_crypto_impls() 56 ec: Box::new(ec), in boringssl_crypto_impls() 57 ckdf: Box::new(BoringAesCmac), in boringssl_crypto_impls() [all …]
|
/hardware/interfaces/security/authgraph/default/src/ |
D | lib.rs | 43 pub fn new() -> Result<Self, error::Error> { in new() method 50 let mut ta = AuthGraphTa::new( in new() 51 keyexchange::AuthGraphParticipant::new( in new() 53 Rc::new(RefCell::new(boring::test_device::AgDevice::default())), in new() 80 channels: Mutex::new(Channels { in_tx, out_rx }), in new()
|
/hardware/interfaces/security/secretkeeper/default/src/ |
D | lib.rs | 46 pub fn new() -> Self { in new() method 54 let storage_impl = Box::new(store::InMemoryStore::default()); in new() 55 let sk_ta = Rc::new(RefCell::new( in new() 56 SecretkeeperTa::new( in new() 63 let mut ag_ta = AuthGraphTa::new( in new() 64 AuthGraphParticipant::new(crypto_impls, sk_ta.clone(), MAX_OPENED_SESSIONS) in new()
|
D | main.rs | 36 std::panic::set_hook(Box::new(|panic_info| { in main() 40 let ta = Arc::new(Mutex::new(LocalTa::new())); in main()
|
D | fuzzer.rs | 28 let ta = Arc::new(Mutex::new(LocalTa::new()));
|
/hardware/google/gfxstream/codegen/vulkan/vulkan-docs-next/appendices/ |
D | VK_KHR_timeline_semaphore.adoc | 31 This extension introduces a new type of semaphore that has an integer 57 1) Do we need a new object type for this? 59 *RESOLVED*: No, we just introduce a new type of semaphore object, as 64 2) What type of payload the new synchronization primitive has? 70 3) Does the new synchronization primitive have the same signal-before-wait 77 4) Does the new synchronization primitive allow resetting its payload? 81 Applications looking for reset behavior should create a new instance of the 93 introduces a new structure that can be chained to slink:VkSubmitInfo to 97 7) Can the new synchronization primitive be used to synchronize presentation 103 8) Do we want to support external sharing of the new synchronization [all …]
|
D | VK_KHR_video_encode_queue.adoc | 35 More specifically, it adds video encode specific capabilities and a new 50 new access flags introduced did not fit in the 32-bit enum 52 Accordingly, all new pipeline stage and access flags have been added to the 53 corresponding 64-bit enum and no new flags have been added to the legacy 55 While the new pipeline stage flag introduced uses bit #27 which would also 99 ** Fixed the definition of rate control flag bits and added the new 109 ** Added new `VK_VIDEO_ENCODE_FEEDBACK_BITSTREAM_HAS_OVERRIDES_BIT_KHR` 111 ** Added new video session create flag 122 ** Added new `vkGetPhysicalDeviceVideoEncodeQualityLevelPropertiesKHR`
|
D | VK_NV_mesh_shader.adoc | 25 This extension provides a new mechanism allowing applications to generate 31 There are new programmable shader types -- the task and mesh shader -- to 92 . Do we need a new VkPrimitiveTopology? 107 . Should we use existing vkCmdDraw or introduce new functions? 110 *RESOLVED*: Introduce new functions. 119 . If new functions, how to name? 131 . Should VK_SHADER_STAGE_ALL_GRAPHICS be updated to include the new stages?
|
D | VK_EXT_depth_bias_control.adoc | 28 This extension adds a new structure, sname:VkDepthBiasRepresentationInfoEXT, 33 This state can also be set dynamically by using the new structure mentioned 34 above in combination with the new fname:vkCmdSetDepthBias2EXT command.
|
D | VK_KHR_ray_tracing_maintenance1.adoc | 38 The new features are as follows: 44 This new shader variable is accessible in the intersection, any-hit, 46 * Adds support for a new pipeline stage and access mask built on top of 54 * Adds two new acceleration structure query parameters: 60 * Adds an optional new indirect ray tracing dispatch command,
|
/hardware/google/gfxstream/guest/android-emu/aemu/base/ |
D | Optional.h | 198 new (&get()) T(other.get()); in Optional() 203 new (&get()) T(std::move(other.get())); in Optional() 213 new (&get()) T(other.get()); in Optional() 223 new (&get()) T(std::move(other.get())); in Optional() 228 Optional(const T& value) : base_flag(true) { new (&get()) T(value); } in Optional() 230 Optional(T&& value) : base_flag(true) { new (&get()) T(std::move(value)); } in Optional() 235 new (&get()) T(std::forward<Args>(args)...); in Optional() 243 new (&get()) T(il); in Optional() 261 new (&get()) T(other.get()); 281 new (&get()) T(std::move(other.get())); [all …]
|
/hardware/interfaces/security/secretkeeper/aidl/vts/ |
D | secretkeeper_test_client.rs | 78 let path = Path::new(SECRETKEEPER_KEY_HOST_DT); in get_secretkeeper_identity() 120 fn new(instance: &str) -> Result<Self, SkClientError> { in new() method 151 session: SkSession::new(sk, &dice_artifacts, expected_sk_key)?, in create() 320 ConstraintSpec::new( in sealing_policy() 326 ConstraintSpec::new( in sealing_policy() 332 ConstraintSpec::new( in sealing_policy() 338 ConstraintSpec::new( in sealing_policy() 349 ConstraintSpec::new( in sealing_policy() 405 let mut sk_client = SkClient::new(&instance).unwrap(); in secret_management_get_version() 422 let mut sk_client = SkClient::new(&instance).unwrap(); in secret_management_malformed_request() [all …]
|
D | secretkeeper_cli.rs | 120 fn new(instance: &str, dice_artifacts: OwnedDiceArtifactsWithExplicitKey) -> Self { in new() method 123 let session = SkSession::new(sk.clone(), &dice_artifacts, None).unwrap(); in new() 145 ConstraintSpec::new( in sealing_policy() 151 ConstraintSpec::new( in sealing_policy() 157 ConstraintSpec::new( in sealing_policy() 163 ConstraintSpec::new( in sealing_policy() 174 ConstraintSpec::new( in sealing_policy() 341 let mut sk_client = SkClient::new(&instance, dice); in main() 372 let mut input = String::new(); in main()
|
/hardware/interfaces/light/aidl/default/ |
D | lights.rs | 44 fn new(hw_lights: impl IntoIterator<Item = HwLight>) -> Self { in new() method 45 let mut lights_map = HashMap::new(); in new() 51 Self { lights: Mutex::new(lights_map) } in new() 60 Self::new((1..=NUM_DEFAULT_LIGHTS).map(id_mapping_closure)) in default()
|
/hardware/google/aemu/base/include/aemu/base/ |
D | Optional.h | 202 new (&get()) T(other.get()); in Optional() 207 new (&get()) T(std::move(other.get())); in Optional() 217 new (&get()) T(other.get()); in Optional() 227 new (&get()) T(std::move(other.get())); in Optional() 232 Optional(const T& value) : base_flag(true) { new (&get()) T(value); } in Optional() 234 Optional(T&& value) : base_flag(true) { new (&get()) T(std::move(value)); } in Optional() 239 new (&get()) T(std::forward<Args>(args)...); in Optional() 247 new (&get()) T(il); in Optional() 265 new (&get()) T(other.get()); 285 new (&get()) T(std::move(other.get())); [all …]
|
/hardware/interfaces/tv/tuner/1.0/ |
D | IDvrCallback.hal | 21 * Notify the client a new status of the demux's record. 23 * @param status a new status of the demux's record. 28 * Notify the client a new status of the demux's playback. 30 * @param status a new status of the demux's playback.
|
D | IFilterCallback.hal | 21 * Notify the client that a new filter event happened. 28 * Notify the client a new status of a filter. 30 * @param status a new status of the filter.
|
/hardware/interfaces/uwb/aidl/default/src/ |
D | service.rs | 22 panic::set_hook(Box::new(|panic_info| { in main() 29 let rt = Runtime::new()?; in main() 34 .map(|(i, arg)| uwb_chip::UwbChip::new(i.to_string(), arg)); in main()
|
/hardware/interfaces/security/authgraph/aidl/vts/functional/ |
D | lib.rs | 36 Ok(ke::AuthGraphParticipant::new( in test_ag_participant() 38 Rc::new(RefCell::new(boring::test_device::AgDevice::default())), in test_ag_participant()
|
/hardware/google/gfxstream/guest/mesa/src/vulkan/registry/ |
D | update-aliases.py | 82 for old, new in aliases.items(): 83 if new in aliases: 84 aliases[old] = aliases[new] 128 ";".join([f's/{old}/{new}/g' for old, new in aliases.items()]),
|
/hardware/interfaces/security/keymint/aidl/default/ |
D | main.rs | 65 std::panic::set_hook(Box::new(|panic_info| { in inner_main() 75 let channel = Arc::new(Mutex::new(LocalTa::new())); in inner_main() 149 pub fn new() -> Self { in new() method
|
/hardware/qcom/sm7250/display/sdm/include/private/ |
D | generic_payload.h | 74 p2 = new A[array_size]; in CopyPayload() 76 p2 = new A(); in CopyPayload() 97 p = new A(); in CreatePayload() 120 p = new A[sz]; in CreatePayload()
|
/hardware/qcom/audio/hal/voice_extn/ |
D | voice_extn.c | 172 __func__, session->state.current, session->state.new, session->vsid); in update_calls() 174 switch(session->state.new) in update_calls() 186 session->state.current = session->state.new; in update_calls() 192 session->state.current = session->state.new; in update_calls() 201 session->state.current = session->state.new; in update_calls() 224 session->state.current = session->state.new; in update_calls() 240 session->state.current = session->state.new; in update_calls() 249 session->state.current = session->state.new; in update_calls() 271 session->state.current = session->state.new; in update_calls() 305 session->state.new = call_state; in update_call_states() [all …]
|
/hardware/google/pixel/gpu_probe/ |
D | main.rs | 25 std::panic::set_hook(Box::new(|panic_msg| { in main() 30 libloading::Library::new("/vendor/lib64/libgpudataproducer.so").unwrap(); in main()
|
/hardware/google/gfxstream/codegen/vulkan/vulkan-docs-next/chapters/VK_EXT_swapchain_maintenance1/ |
D | SwapchainPresentModeInfo.adoc | 29 be presented according to the new present mode. 47 vertical blanking period will follow the new mode for current and 55 according to the new mode. 61 to be replaced by a new one. 63 present operation and is applied according to the new mode. 68 presentation is done according to the behavior of the new mode. 71 the current and subsequent updates are applied according to the new
|