Searched refs:param (Results 1 - 25 of 128) sorted by relevance

123456

/system/bt/stack/btm/
H A Dble_advertiser_hci_interface.cc56 uint8_t* param, uint16_t param_len) {
62 STREAM_TO_UINT8(status, param);
63 STREAM_TO_UINT8(subcode, param);
123 uint8_t param[BTM_BLE_MULTI_ADV_SET_PARAM_LEN]; variable
124 memset(param, 0, BTM_BLE_MULTI_ADV_SET_PARAM_LEN);
126 uint8_t* pp = param;
154 FROM_HERE, BTM_BLE_MULTI_ADV_SET_PARAM_LEN, param,
162 uint8_t param[BTM_BLE_MULTI_ADV_WRITE_DATA_LEN]; variable
163 memset(param, 0, BTM_BLE_MULTI_ADV_WRITE_DATA_LEN);
165 uint8_t* pp = param;
54 btm_ble_multi_adv_vsc_cmpl_cback(uint8_t expected_opcode, status_cb command_complete, uint8_t* param, uint16_t param_len) argument
181 uint8_t param[BTM_BLE_MULTI_ADV_WRITE_DATA_LEN]; variable
197 uint8_t param[BTM_BLE_MULTI_ADV_SET_RANDOM_ADDR_LEN]; variable
225 uint8_t param[BTM_BLE_MULTI_ADV_ENB_LEN]; variable
337 uint8_t param[HCIC_PARAM_SIZE_BLE_WRITE_ADV_PARAMS]; variable
373 uint8_t param[HCIC_PARAM_SIZE_BLE_WRITE_ADV_DATA + 1]; variable
390 uint8_t param[HCIC_PARAM_SIZE_BLE_WRITE_ADV_DATA + 1]; variable
405 uint8_t param[HCIC_PARAM_SIZE_WRITE_RANDOM_ADDR_CMD]; variable
430 uint8_t param[HCIC_PARAM_SIZE_WRITE_ADV_ENABLE]; variable
509 uint8_t param[HCI_LE_SET_EXT_ADVERTISING_PARAM_LEN]; variable
541 uint8_t param[cmd_length]; variable
563 uint8_t param[cmd_length]; variable
582 uint8_t param[LE_SET_ADVERTISING_SET_RANDOM_ADDRESS_LEN]; variable
599 uint8_t param[cmd_length]; variable
623 uint8_t param[HCI_LE_SET_PRIODIC_ADVERTISING_PARAM_LEN]; variable
642 uint8_t param[HCI_LE_SET_PRIODIC_ADVERTISING_DATA_LEN]; variable
657 uint8_t param[HCI_LE_ENABLE_PRIODIC_ADVERTISEMENT_LEN]; variable
671 uint8_t param[cmd_length]; variable
[all...]
H A Dbtm_ble_batchscan.cc236 uint8_t param[len]; local
237 memset(param, 0, len);
239 uint8_t* pp = param;
243 btu_hcif_send_cmd_with_cb(FROM_HERE, HCI_BLE_BATCH_SCAN_OCF, param, len, cb);
305 uint8_t param[len]; local
306 memset(param, 0, len);
308 uint8_t* pp = param;
314 btu_hcif_send_cmd_with_cb(FROM_HERE, HCI_BLE_BATCH_SCAN_OCF, param, len, cb);
323 // Override param and decide addr_type based on own addr type
328 uint8_t param[le local
345 uint8_t param[len]; local
[all...]
H A Dbtm_ble_adv_filter.cc301 uint8_t param[len_max]; local
302 memset(param, 0, len_max);
304 uint8_t* p = param;
317 FROM_HERE, HCI_BLE_ADV_FILTER_OCF, param, len,
346 uint8_t param[len_max]; local
347 memset(param, 0, len_max);
349 uint8_t* p = param;
380 FROM_HERE, HCI_BLE_ADV_FILTER_OCF, param, len,
398 uint8_t param[len_max]; local
399 memset(param,
493 uint8_t param[len]; local
547 uint8_t param[max_len]; local
703 uint8_t param[len]; local
744 uint8_t param[len], *p; local
869 uint8_t param[20]; local
[all...]
H A Dbtm_ble_privacy.cc421 uint8_t param[20] = {0}; local
422 uint8_t* p = param;
429 BTM_BLE_META_REMOVE_IRK_LEN, param,
451 uint8_t param[20] = {0}; local
452 uint8_t* p = param;
456 BTM_BLE_META_CLEAR_IRK_LEN, param,
480 uint8_t param[20] = {0}; local
481 uint8_t* p = param;
487 param, btm_ble_resolving_list_vsc_op_cmpl);
589 uint8_t param[2 local
753 uint8_t param[40] = {0}; local
[all...]
/system/bt/btif/src/
H A Dbtif_profile_queue.cc98 ConnectNode param(bda, uuid, connect_cb);
100 if (node.uuid() == param.uuid() && node.address() == param.address()) {
102 __func__, param.ToString().c_str());
108 param.ToString().c_str());
109 connect_queue.push_back(param);
H A Dbtif_gatt_test.cc222 tGATT_DISC_PARAM param; local
223 memset(&param, 0, sizeof(tGATT_DISC_PARAM));
231 param.s_handle = params->u2;
232 param.e_handle = params->u3;
233 param.service = *params->uuid1;
238 param.service.ToString().c_str(), params->u2, params->u3);
239 GATTC_Discover(test_cb.conn_id, params->u1, &param);
/system/keymaster/ng/include/
H A Dkeymaster_tags.h42 * given "KeyParameter param;" then "accessTagValue(TAG_PURPOSE, param)"
43 * yields a reference to param.f.purpose
56 * auto param = Authorization(TAG_ALGORITM, Algorithm::RSA);
57 * auto value1 = authorizationValue(TAG_PURPOSE, param);
58 * auto value2 = authorizationValue(TAG_ALGORITM, param);
203 inline auto accessTagValue(TypedTag<tag_type, tag>, const KeyParameter& param) \
204 ->const decltype(param.field_name)& { \
205 return param.field_name; \
208 inline auto accessTagValue(TypedTag<tag_type, tag>, KeyParameter& param) \
248 KeyParameter param; local
257 KeyParameter param; local
346 authorizationValue(TypedTag<tag_type, tag> ttag, const KeyParameter& param) argument
[all...]
/system/security/keystore/
H A Dauthorization_set.cpp243 OutStreams& serialize(T ttag, OutStreams& out, const KeyParameter& param) { argument
244 out.elements.write(reinterpret_cast<const char*>(&param.tag), sizeof(int32_t));
245 return serializeParamValue(out, accessTagValue(ttag, param));
252 static OutStreams& serialize(OutStreams& out, const KeyParameter& param) { argument
253 return choose_serializer<Tags...>::serialize(out, param);
264 static OutStreams& serialize(OutStreams& out, const KeyParameter& param) { argument
265 if (param.tag == tag) {
266 return keystore::serialize(TypedTag<tag_type, tag>(), out, param);
268 return choose_serializer<Tail...>::serialize(out, param);
273 OutStreams& serialize(OutStreams& out, const KeyParameter& param) { argument
348 deserialize(T&& ttag, InStreams& in, KeyParameter* param) argument
356 deserialize(InStreams& in, KeyParameter* param) argument
370 deserialize(InStreams& in, KeyParameter* param) argument
379 deserialize(InStreams& in, KeyParameter* param) argument
[all...]
H A Dkeystore_aidl_hidl_marshalling_utils.cpp102 android::status_t writeKeyParameterToParcel(const KeyParameter& param, android::Parcel* out) { argument
106 auto tag = param.tag;
109 switch (typeFromTag(param.tag)) {
114 rc = out->writeInt32(param.f.integer);
119 rc = out->writeInt64(param.f.longInteger);
126 rc = writeKeymasterBlob(param.blob, out);
129 ALOGE("Failed to write KeyParameter: Unsupported tag %d", param.tag);
146 auto param = readKeyParameterFromParcel(in); local
147 if (!param.isOk()) {
151 result[i] = param
[all...]
/system/bt/hci/include/
H A Dvendor.h61 int (*send_command)(vendor_opcode_t opcode, void* param);
64 int (*send_async_command)(vendor_async_opcode_t opcode, void* param);
/system/nfc/src/nfc/tags/
H A Drw_main.cc209 p_activate_params->rf_tech_param.param.pa.sel_rsp);
230 status = rw_t1t_select(p_activate_params->rf_tech_param.param.pa.hr,
231 p_activate_params->rf_tech_param.param.pa.nfcid1);
236 if (p_activate_params->rf_tech_param.param.pa.sel_rsp ==
244 rw_t3t_select(p_activate_params->rf_tech_param.param.pf.nfcid2,
245 p_activate_params->rf_tech_param.param.pf.mrti_check,
246 p_activate_params->rf_tech_param.param.pf.mrti_update);
257 status = rw_i93_select(p_activate_params->rf_tech_param.param.pi93.uid);
/system/keymaster/android_keymaster/
H A Dauthorization_set.cpp308 static size_t serialized_size(const keymaster_key_param_t& param) { argument
309 switch (keymaster_tag_get_type(param.tag)) {
331 static uint8_t* serialize(const keymaster_key_param_t& param, uint8_t* buf, const uint8_t* end, argument
333 buf = append_uint32_to_buf(buf, end, param.tag);
334 switch (keymaster_tag_get_type(param.tag)) {
339 buf = append_uint32_to_buf(buf, end, param.enumerated);
343 buf = append_uint32_to_buf(buf, end, param.integer);
347 buf = append_uint64_to_buf(buf, end, param.long_integer);
350 buf = append_uint64_to_buf(buf, end, param.date_time);
354 *buf = static_cast<uint8_t>(param
366 deserialize(keymaster_key_param_t* param, const uint8_t** buf_ptr, const uint8_t* end, const uint8_t* indirect_base, const uint8_t* indirect_end) argument
[all...]
H A Dkeymaster_enforcement.cpp175 for (auto& param : auth_set) {
176 if (param.tag == KM_TAG_USER_SECURE_ID) {
179 if (AuthTokenMatches(auth_set, operation_params, param.long_integer, auth_type_index,
228 for (auto& param : auth_set) {
232 if (param.tag == KM_TAG_PADDING_OLD || param.tag == KM_TAG_DIGEST_OLD)
235 switch (param.tag) {
238 if (!activation_date_valid(param.date_time))
243 if (is_origination_purpose(purpose) && expiration_date_passed(param.date_time))
248 if (is_usage_purpose(purpose) && expiration_date_passed(param
[all...]
/system/media/audio_utils/tests/
H A Dformat_tests.cpp61 const auto param = GetParam(); local
62 const audio_format_t src_encoding = std::get<0>(param);
63 const audio_format_t dst_encoding = std::get<1>(param);
/system/tools/hidl/c2hal/
H A DFunctionDeclaration.cpp39 for(auto* param : *mParams) {
40 delete param;
/system/tools/hidl/
H A DAnnotation.cpp145 for (const auto* param : *mParams) {
146 const auto& retParam = param->getConstantExpressions();
166 const AnnotationParam* param = mParams->at(i); local
168 out << param->getName() << "=";
170 const std::vector<std::string>& values = param->getValues();
/system/libhwbinder/vts/performance/
H A DLatency.cpp82 sched_param param; local
84 REQUIRE(!pthread_getschedparam(pthread_self(), &policy, &param));
85 return param.sched_priority;
89 sched_param param; local
97 REQUIRE(!pthread_getschedparam(pthread_self(), &policy, &param));
102 cout << setw(12) << left << s << param.sched_priority << endl;
136 sched_param param; local
141 param.sched_priority = sched_get_priority_max(SCHED_FIFO);
142 REQUIRE(!pthread_attr_setschedparam(&attr, &param));
/system/bt/audio_hearing_aid_hw/src/
H A Daudio_hearing_aid_hw.cc82 /* need explicit set param call to resume (suspend=false) */
1184 std::string param; local
1186 if (!param.empty()) param += "|";
1187 param += "AUDIO_FORMAT_PCM_16_BIT";
1190 if (!param.empty()) param += "|";
1191 param += "AUDIO_FORMAT_PCM_24_BIT_PACKED";
1194 if (!param.empty()) param
1208 std::string param; local
1252 std::string param; local
[all...]
/system/core/libpixelflinger/
H A Dpixelflinger.cpp334 GGLint param)
341 switch (param) {
347 if (c->activeTMU->env != param) {
348 c->activeTMU->env = param;
391 GGLint param)
399 if (param == GGL_CLAMP_TO_EDGE)
400 param = GGL_CLAMP;
405 if ((param == GGL_CLAMP) ||
406 (param == GGL_REPEAT)) {
411 if ((param
332 ggl_texEnvi(void* con, GGLenum target, GGLenum pname, GGLint param) argument
388 ggl_texParameteri(void* con, GGLenum target, GGLenum pname, GGLint param) argument
477 ggl_texGeni(void* con, GGLenum coord, GGLenum pname, GGLint param) argument
[all...]
/system/bt/stack/hid/
H A Dhidd_int.h73 uint8_t param, uint8_t data,
H A Dhidh_int.h64 uint8_t param, uint16_t data,
/system/bt/stack/mcap/
H A Dmca_dact.cc68 if (p_data->open.param == MCA_INT) event = MCA_OPEN_CFM_EVT;
116 close.param = MCA_INT;
/system/tools/hidl/docs/src/writer/elements/
H A DAbstractElement.kt60 <table class="function param responsive">
H A DEnumElement.kt40 <table class="function param responsive">
H A DMethodElement.kt84 <table class="function param responsive">
107 <table class="function param responsive">
136 <table class="function param responsive">

Completed in 738 milliseconds

123456