/aosp12/hardware/ril/include/telephony/ |
H A D | ril_msim.h | 40 RIL_SubscriptionType sub_type; /* Indicates subscription 1 or subscription 2 */ member
|
/aosp12/frameworks/compile/mclinker/include/mcld/Support/ |
H A D | CXADemangle.tcc | 965 … db.subs.push_back(typename C::sub_type(1, db.names.back(), db.names.get_allocator())); in parse_unresolved_type() 981 … db.subs.push_back(typename C::sub_type(1, db.names.back(), db.names.get_allocator())); in parse_unresolved_type() 999 … db.subs.push_back(typename C::sub_type(1, db.names.back(), db.names.get_allocator())); in parse_unresolved_type() 3970 … db.subs.push_back(typename C::sub_type(1, db.names.back(), db.names.get_allocator())); in parse_nested_name() 3989 … db.subs.push_back(typename C::sub_type(1, db.names.back(), db.names.get_allocator())); in parse_nested_name() 4003 … db.subs.push_back(typename C::sub_type(1, db.names.back(), db.names.get_allocator())); in parse_nested_name() 4025 … db.subs.push_back(typename C::sub_type(1, db.names.back(), db.names.get_allocator())); in parse_nested_name() 4197 … db.subs.push_back(typename C::sub_type(1, db.names.back(), db.names.get_allocator())); in parse_name() 4882 typedef Vector<string_pair<String>> sub_type; typedef 4883 typedef Vector<sub_type> template_param_type; [all …]
|
/aosp12/hardware/qcom/bt/msm8909/libbt-vendor/src/ |
H A D | hw_ar3k.c | 435 static int get_ps_type(char *ptr, int index, char *type, char *sub_type) in get_ps_type() argument 453 (*sub_type) = toupper(ptr[i]); in get_ps_type() 472 char sub_type = '\0'; in get_input_format() local 484 if (get_ps_type(buf, ptr - buf, &type, &sub_type) < 0) in get_input_format() 488 if (type == ARRAY || sub_type == ARRAY) in get_input_format() 491 if (type == STRING || sub_type == STRING) in get_input_format()
|
/aosp12/hardware/qcom/bt/msm8909w_3100/libbt-vendor/src/ |
H A D | hw_ar3k.c | 437 static int get_ps_type(char *ptr, int index, char *type, char *sub_type) in get_ps_type() argument 455 (*sub_type) = toupper(ptr[i]); in get_ps_type() 474 char sub_type = '\0'; in get_input_format() local 486 if (get_ps_type(buf, ptr - buf, &type, &sub_type) < 0) in get_input_format() 490 if (type == ARRAY || sub_type == ARRAY) in get_input_format() 493 if (type == STRING || sub_type == STRING) in get_input_format()
|
/aosp12/hardware/qcom/bt/msm8992/libbt-vendor/src/ |
H A D | hw_ar3k.c | 435 static int get_ps_type(char *ptr, int index, char *type, char *sub_type) in get_ps_type() argument 453 (*sub_type) = toupper(ptr[i]); in get_ps_type() 472 char sub_type = '\0'; in get_input_format() local 484 if (get_ps_type(buf, ptr - buf, &type, &sub_type) < 0) in get_input_format() 488 if (type == ARRAY || sub_type == ARRAY) in get_input_format() 491 if (type == STRING || sub_type == STRING) in get_input_format()
|
/aosp12/hardware/qcom/bt/msm8996/libbt-vendor/src/ |
H A D | hw_ar3k.c | 439 static int get_ps_type(char *ptr, int index, char *type, char *sub_type) in get_ps_type() argument 457 (*sub_type) = toupper(ptr[i]); in get_ps_type() 476 char sub_type = '\0'; in get_input_format() local 488 if (get_ps_type(buf, ptr - buf, &type, &sub_type) < 0) in get_input_format() 492 if (type == ARRAY || sub_type == ARRAY) in get_input_format() 495 if (type == STRING || sub_type == STRING) in get_input_format()
|
/aosp12/hardware/qcom/bt/msm8998/libbt-vendor/src/ |
H A D | hw_ar3k.c | 441 static int get_ps_type(char *ptr, int index, char *type, char *sub_type) in get_ps_type() argument 459 (*sub_type) = toupper(ptr[i]); in get_ps_type() 478 char sub_type = '\0'; in get_input_format() local 490 if (get_ps_type(buf, ptr - buf, &type, &sub_type) < 0) in get_input_format() 494 if (type == ARRAY || sub_type == ARRAY) in get_input_format() 497 if (type == STRING || sub_type == STRING) in get_input_format()
|
/aosp12/hardware/qcom/sdm845/bt/libbt-vendor/src/ |
H A D | hw_ar3k.c | 439 static int get_ps_type(char *ptr, int index, char *type, char *sub_type) in get_ps_type() argument 457 (*sub_type) = toupper(ptr[i]); in get_ps_type() 476 char sub_type = '\0'; in get_input_format() local 488 if (get_ps_type(buf, ptr - buf, &type, &sub_type) < 0) in get_input_format() 492 if (type == ARRAY || sub_type == ARRAY) in get_input_format() 495 if (type == STRING || sub_type == STRING) in get_input_format()
|
/aosp12/art/compiler/optimizing/ |
H A D | loop_optimization.cc | 2167 DataType::Type sub_type = GetNarrowerType(a, b); in VectorizeSADIdiom() local 2168 if (reduction_type != sub_type && in VectorizeSADIdiom() 2169 (!IsNarrowerOperands(a, b, sub_type, &r, &s, &is_unsigned) || is_unsigned)) { in VectorizeSADIdiom() 2173 if (!TrySetVectorType(sub_type, &restrictions) || in VectorizeSADIdiom() 2175 (reduction_type != sub_type && HasVectorRestrictions(restrictions, kNoWideSAD))) { in VectorizeSADIdiom() 2184 if (VectorizeUse(node, acc, generate_code, sub_type, restrictions) && in VectorizeSADIdiom() 2185 VectorizeUse(node, r, generate_code, sub_type, restrictions) && in VectorizeSADIdiom() 2186 VectorizeUse(node, s, generate_code, sub_type, restrictions)) { in VectorizeSADIdiom() 2195 GetOtherVL(reduction_type, sub_type, vector_length_), in VectorizeSADIdiom()
|
/aosp12/system/bt/stack/avrc/ |
H A D | avrc_pars_ct.cc | 300 BE_STREAM_TO_UINT32(player->sub_type, p); in avrc_pars_browse_rsp() 317 player->major_type, player->sub_type, player->play_status, in avrc_pars_browse_rsp()
|
H A D | avrc_bld_tg.cc | 34 ((_p_player)->sub_type & AVRC_SUB_TYPE_INVALID) == 0 && \ 977 UINT32_TO_BE_STREAM(p_data, p_player->sub_type); in avrc_bld_get_folder_items_rsp()
|
/aosp12/system/bt/include/hardware/ |
H A D | bt_rc.h | 249 uint32_t sub_type; member
|
/aosp12/system/bt/stack/include/ |
H A D | avrc_defs.h | 1051 uint32_t sub_type; /* Use AVRC_SUB_TYPE_NONE, AVRC_SUB_TYPE_AUDIO_BOOK, or member
|
/aosp12/system/security/keystore2/src/ |
H A D | database.rs | 2081 let sub_type: SubComponentType = row.0; in retrieve_attestation_key_and_cert_chain() localVariable 2082 match sub_type { in retrieve_attestation_key_and_cert_chain() 2512 let sub_type: SubComponentType = in load_blob_components() localVariable 2514 has_km_blob = has_km_blob || sub_type == SubComponentType::KEY_BLOB; in load_blob_components() 2515 match (sub_type, load_bits.load_public(), load_bits.load_km()) { in load_blob_components()
|
/aosp12/system/bt/btif/src/ |
H A D | btif_rc.cc | 2098 item.u.player.sub_type = cur_item->player.sub_type; in get_folder_items_list_rsp() 4235 btrc_item_player->sub_type = avrc_item_player->sub_type; in get_folder_item_type_player()
|
/aosp12/hardware/ril/libril/ |
H A D | ril_service.cpp | 2350 rilUiccSub.sub_type = (RIL_SubscriptionType) uiccSub.subType; in setUiccSubscription()
|