/system/chre/host/hal_generic/common/ |
D | hal_client_manager.cc | 34 using Client = HalClientManager::Client; typedef 51 return std::string{Client::kNameUnset}; in getName() 58 inline HostEndpointId mutateVendorEndpointId(const Client &client, in mutateVendorEndpointId() 69 Client *client = getClientByUuid(kSystemServerUuid); in getUuid() 71 client != nullptr && client->pid != Client::kPidUnset; in getUuid() 86 Client *HalClientManager::getClientByField( in getClientByField() 87 const std::function<bool(const Client &client)> &fieldMatcher) { in getClientByField() 88 for (Client &client : mClients) { in getClientByField() 96 Client *HalClientManager::getClientByClientId(HalClientId clientId) { in getClientByClientId() 97 return getClientByField([&clientId](const Client &client) { in getClientByClientId() [all …]
|
D | hal_client_manager.h | 90 struct Client { struct 94 explicit Client(const std::string &uuid, const std::string &name, in Client() argument 96 : Client(uuid, name, clientId, /* pid= */ kPidUnset, in Client() 100 explicit Client(std::string uuid, std::string name, in Client() function 450 const Client *client, const HostEndpointId &endpointId) { in isValidEndpointId() 475 Client *getClientByField( 476 const std::function<bool(const Client &client)> &fieldMatcher) 479 Client *getClientByClientId(HalClientId clientId) REQUIRES(mLock); 481 Client *getClientByUuid(const std::string &uuid) REQUIRES(mLock); 483 Client *getClientByProcessId(pid_t pid) REQUIRES(mLock); [all …]
|
/system/chre/java/utils/pigweed/src/com/google/android/chre/utils/pigweed/ |
D | ChreRpcClient.java | 30 import dev.pigweed.pw_rpc.Client; 42 private final Client mRpcClient; 75 mRpcClient = Client.create(List.of(mChannel), services); in ChreRpcClient() 97 mRpcClient = Client.create(List.of(mChannel), services); in ChreRpcClient()
|
D | ChreCallbackHandler.java | 27 import dev.pigweed.pw_rpc.Client; 37 private Client mRpcClient; 56 public void lateInit(Client rpcClient, ChreChannelOutput channelOutput) { in lateInit()
|
D | ChreIntentHandler.java | 28 import dev.pigweed.pw_rpc.Client; 44 public static void handle(Intent intent, long nanoappId, Client rpcClient, in handle()
|
/system/security/keystore2/src/ |
D | database.rs | 294 Client, enumerator 303 KeyType::Client => 0, in to_sql() 312 0 => Ok(KeyType::Client), in column_result() 2331 params![domain.0, namespace, KeyType::Client], in unbind_keys_for_namespace() 2340 params![domain.0, namespace, KeyType::Client], in unbind_keys_for_namespace() 2349 params![domain.0, namespace, KeyType::Client], in unbind_keys_for_namespace() 2355 params![domain.0, namespace, KeyType::Client], in unbind_keys_for_namespace() 2439 KeyType::Client, in unbind_keys_for_user() 2508 .query(params![KeyType::Client, Domain::APP.0 as u32, user_id, KeyLifeCycle::Live,]) in unbind_auth_bound_keys_for_user() 2686 Self::load_access_tuple(tx, key, KeyType::Client, caller_uid).context(ks_err!())?; in grant() [all …]
|
D | super_key.rs | 920 KeyType::Client, /* TODO Should be Super b/189470584 */ in lock_unlocked_device_required_keys() 1001 KeyType::Client, // This should not be a Client key. in try_unlock_user_with_biometric() 1557 .key_exists(Domain::APP, USER_ID.into(), TEST_KEY_ALIAS, KeyType::Client) in test_user_removal() 1560 .key_exists(Domain::APP, USER_ID.into(), TEST_BOOT_KEY_ALIAS, KeyType::Client) in test_user_removal() 1594 .key_exists(Domain::APP, USER_ID.into(), TEST_KEY_ALIAS, KeyType::Client) in test_user_removal() 1597 .key_exists(Domain::APP, USER_ID.into(), TEST_BOOT_KEY_ALIAS, KeyType::Client) in test_user_removal() 1629 .key_exists(Domain::APP, USER_ID.into(), TEST_KEY_ALIAS, KeyType::Client) in test_user_reset() 1632 .key_exists(Domain::APP, USER_ID.into(), TEST_BOOT_KEY_ALIAS, KeyType::Client) in test_user_reset() 1659 .key_exists(Domain::APP, USER_ID.into(), TEST_KEY_ALIAS, KeyType::Client) in test_user_reset() 1662 .key_exists(Domain::APP, USER_ID.into(), TEST_BOOT_KEY_ALIAS, KeyType::Client) in test_user_reset() [all …]
|
D | service.rs | 139 KeyType::Client, in get_key_entry() 195 KeyType::Client, in update_subcomponent() 248 KeyType::Client, in update_subcomponent() 329 db.borrow_mut().unbind_key(key, KeyType::Client, caller_uid, |k, av| { in delete_key()
|
D | attestation_key_utils.rs | 108 KeyType::Client, in load_attest_key_blob_and_cert()
|
D | utils.rs | 568 .list_past_alias(domain, namespace, KeyType::Client, start_past_alias) in list_key_entries() 589 let num_keys_in_db = db.count_keys(domain, namespace, KeyType::Client)?; in count_key_entries()
|
D | boot_level_keys.rs | 138 .lookup_or_generate_key(db, &key_desc, KeyType::Client, ¶ms, |key_characteristics| { in get_level_zero_key()
|
D | security_level.rs | 192 KeyType::Client, in store_new_key() 263 KeyType::Client, in create_operation() 745 KeyType::Client, in import_wrapped_key()
|
D | legacy_importer.rs | 678 KeyType::Client, in check_and_import() 691 .store_new_certificate(&key, KeyType::Client, &ca_cert, &KEYSTORE_UUID) in check_and_import()
|
/system/chre/util/include/chre/util/pigweed/ |
D | rpc_client.h | 114 pw::rpc::Client mRpcClient;
|
/system/core/fastboot/ |
D | README.md | 30 2. Client response with a single packet no greater than 256 bytes. 63 4. Client responds with a single packet no greater than 256 bytes. 83 Client: "OKAY0.4" return version "0.4" 87 Client: "FAILUnknown variable" getvar failure; see getvar details below 91 Client: "DATA00001234" ready to accept data 95 Client: "OKAY" success 99 Client: "INFOerasing flash" indicate status / progress 105 Client: "FAILunknown command" indicate failure 206 ## Client Variables 443 Host Client [all …]
|
/system/chre/host/common/test/ |
D | chre_test_rpc.cc | 122 rpcClient->get<chre::rpc::pw_rpc::nanopb::RpcWorldService::Client>(); in main()
|
/system/libhidl/transport/manager/1.1/ |
D | IServiceManager.hal | 31 * @param callback Client callback that was previously registered.
|
/system/chre/chpp/ |
D | RELEASE_NOTES.md | 67 - Client implementation cleanup 68 - Client-side handling of close responses 115 - Client and service fixes including length and bound checks, missing implementations 130 - Client deinitialization and reset support 165 - Client request timeout support 174 - Client request/response state refactoring 175 - Client registration cleanup
|
/system/chre/host/common/include/chre_host/pigweed/ |
D | hal_rpc_client.h | 170 pw::rpc::Client mRpcClient;
|
/system/chre/apps/rpc_world/src/ |
D | rpc_world_manager.cc | 83 mClient.get<chre::rpc::pw_rpc::nanopb::RpcWorldService::Client>(); in start()
|
/system/chre/host/test/hal_generic/common/ |
D | hal_client_manager_test.cc | 52 using HalClient = HalClientManager::Client; 130 const std::vector<Client> getClients() { in getClients()
|
/system/chre/doc/ |
D | nanoapp_clients.md | 1 # Interacting with Nanoapps from Client Code
|
/system/hardware/interfaces/net/netd/1.1/ |
D | INetd.hal | 97 * Enable IP forwarding on the system. Client must disable forwarding when
|
/system/libhidl/transport/manager/1.0/ |
D | IServiceManager.hal | 122 * @param callback Client callback to recieve notifications.
|
/system/chre/test/simulation/ |
D | rpc_test.cc | 287 .get<rpc::pw_rpc::nanopb::RpcTestService::Client>(); in TEST_F()
|