Searched defs:set (Results 26 - 31 of 31) sorted by relevance

12

/system/security/keystore/
H A Dlegacy_keymaster_device_wrapper.cpp158 static inline hidl_vec<KeyParameter> kmParamSet2Hidl(const keymaster_key_param_set_t& set) { argument
160 if (set.length == 0 || set.params == nullptr) return result;
162 result.resize(set.length);
163 keymaster_key_param_t* params = set.params;
164 for (size_t i = 0; i < set.length; ++i) {
222 // convert the parameter set to something our backend understands
/system/keymaster/
H A Dandroid_keymaster_test_utils.cpp159 std::ostream& operator<<(std::ostream& os, const AuthorizationSet& set) { argument
160 if (set.size() == 0)
164 for (size_t i = 0; i < set.size(); ++i)
165 os << set[i] << std::endl;
223 AuthorizationSet set; local
224 set.push_back(TAG_USER_ID, 7);
225 set.push_back(TAG_USER_AUTH_TYPE, HW_AUTH_PASSWORD);
226 set.push_back(TAG_AUTH_TIMEOUT, 300);
227 return set;
231 AuthorizationSet set; local
[all...]
/system/tools/hidl/test/
H A Dhidl_test_client.cpp54 #include <set>
157 std::string to_string(std::set<T> set) { argument
162 for (const T &item : set) {
578 static const std::set<std::string> binderizedSet = {
592 static const std::set<std::string> passthroughSet = {
597 std::set<std::string> activeSet;
612 std::set<std::string> registeredSet;
618 std::set<std::string> difference;
632 std::set<st
[all...]
/system/nfc/halimpl/bcm2079x/adaptation/
H A Duserial_linux.c433 static inline int create_signal_fds(struct pollfd* set) { argument
440 set->fd = signal_fds[0];
507 static inline int is_signaled(struct pollfd* set) { argument
508 return ((set->revents & POLLIN) == POLLIN) ||
509 ((set->revents & POLLRDNORM) == POLLRDNORM);
617 /* Initialize the input set */
881 ** Description helper function to set the open state of the bt_wake if
1295 /* set input/output baudrate */
1366 ** values in the conf. file setting override these if set.
1551 ** Multiple GPIOs of the same type can be masked together to set mor
[all...]
/system/bt/btif/src/
H A Dbtif_dm.cc287 void btif_dm_init(uid_set_t* set) { uid_set = set; } argument
584 BTIF_TRACE_DEBUG("%s cod is again 0, set as unclassified", __func__);
670 // Try to read address type. OOB pairing might have set it earlier, but
853 BTIF_TRACE_DEBUG("%s cod is 0, set as unclassified", __func__);
935 /* if just_works and bonding bit is not set treat this as temporary */
973 LOG_DEBUG(LOG_TAG, "%s cod is 0, set as unclassified", __func__);
1007 LOG_DEBUG(LOG_TAG, "%s cod is 0, set as unclassified", __func__);
2013 /* if remote name is available in EIR, set teh flag so that stack doesnt
2432 /* if the storage does not have it. Most likely app never set i
[all...]
H A Dbtif_hl.cc1157 * Description set HL state
1874 * Description set the channel callback state
4086 * Description set socket state
4216 BTIF_TRACE_DEBUG("found and set socket_id=%d is_set=%d",
4388 static inline int btif_hl_select_wakeup_init(fd_set* set) { argument
4399 FD_SET(signal_fds[0], set);
4499 * Description check whether a fd is set or not
4504 static inline int btif_hl_select_wake_signaled(fd_set* set) { argument
4506 return FD_ISSET(signal_fds[0], set);
4546 BTIF_TRACE_DEBUG("set curr_se
[all...]

Completed in 176 milliseconds

12