Home
last modified time | relevance | path

Searched refs:ind (Results 1 – 12 of 12) sorted by relevance

/system/nfc/src/nfc/tags/
Dtags_int.c240 int ind = (int)(p_info - t1t_cmd_rsp_infos); in t1t_info_to_str() local
241 if (ind < T1T_MAX_NUM_OPCODES) in t1t_info_to_str()
242 return (const char*)t1t_cmd_str[ind]; in t1t_info_to_str()
258 int ind = (int)(p_info - t2t_cmd_rsp_infos); in t2t_info_to_str() local
259 if (ind < T2T_MAX_NUM_OPCODES) in t2t_info_to_str()
260 return (const char*)t2t_cmd_str[ind]; in t2t_info_to_str()
/system/extras/ext4_utils/
Dindirect.c317 u32 ind = 0; in indirect_blocks_needed() local
320 return ind; in indirect_blocks_needed()
325 ind += DIV_ROUND_UP(len, aux_info.blocks_per_ind); in indirect_blocks_needed()
328 return ind; in indirect_blocks_needed()
332 ind += DIV_ROUND_UP(len, aux_info.blocks_per_dind); in indirect_blocks_needed()
335 return ind; in indirect_blocks_needed()
339 ind += DIV_ROUND_UP(len, aux_info.blocks_per_tind); in indirect_blocks_needed()
342 return ind; in indirect_blocks_needed()
/system/bt/btif/src/
Dbtif_hf_client.cc759 static void process_ind_evt(tBTA_HF_CLIENT_IND* ind) { in process_ind_evt() argument
762 btif_hf_client_cb_t* cb = btif_hf_client_get_cb_by_bda(ind->bd_addr); in process_ind_evt()
765 switch (ind->type) { in process_ind_evt()
768 (bthf_client_call_t)ind->value); in process_ind_evt()
773 (bthf_client_callsetup_t)ind->value); in process_ind_evt()
777 (bthf_client_callheld_t)ind->value); in process_ind_evt()
782 (bthf_client_network_state_t)ind->value); in process_ind_evt()
787 ind->value); in process_ind_evt()
792 (bthf_client_service_type_t)ind->value); in process_ind_evt()
797 ind->value); in process_ind_evt()
[all …]
Dbtif_hf.cc252 ag_res.ind.id = indicator; in send_indicator_update()
253 ag_res.ind.value = value; in send_indicator_update()
1077 ag_res.ind.id = ind_id; in bind_response()
1078 ag_res.ind.on_demand = (ind_status == BTHF_HF_IND_ENABLED); in bind_response()
/system/bt/stack/btm/
Dbtm_pm.cc149 int ind, acl_ind; in BTM_SetPowerMode() local
171 ind = mode - BTM_PM_MD_HOLD; /* make it base 0 */ in BTM_SetPowerMode()
173 if (!(p_features[btm_pm_mode_off[ind]] & btm_pm_mode_msk[ind])) in BTM_SetPowerMode()
376 void btm_pm_sm_alloc(uint8_t ind) { in btm_pm_sm_alloc() argument
377 tBTM_PM_MCB* p_db = &btm_cb.pm_mode_db[ind]; /* per ACL link */ in btm_pm_sm_alloc()
381 BTM_TRACE_DEBUG("btm_pm_sm_alloc ind:%d st:%d", ind, p_db->state); in btm_pm_sm_alloc()
Dbtm_int.h137 extern void btm_pm_sm_alloc(uint8_t ind);
/system/bt/bta/ag/
Dbta_ag_cmd.cc1635 bta_ag_send_ind(p_scb, p_result->data.ind.id, p_result->data.ind.value, in bta_ag_hfp_result()
1661 p_result->data.ind.id); in bta_ag_hfp_result()
1664 p_result->data.ind.id); in bta_ag_hfp_result()
1671 p_result->data.ind.id); in bta_ag_hfp_result()
1674 p_result->data.ind.id); in bta_ag_hfp_result()
1680 p_result->data.ind.on_demand) { in bta_ag_hfp_result()
1685 p_result->data.ind.on_demand; in bta_ag_hfp_result()
1686 p += utl_itoa(p_result->data.ind.id, p); in bta_ag_hfp_result()
1693 "%s HF Indicator %d already %s", p_result->data.ind.id, in bta_ag_hfp_result()
1694 (p_result->data.ind.on_demand == true) ? "Enabled" : "Disabled"); in bta_ag_hfp_result()
/system/libvintf/
Dassemble_vintf.cpp381 auto ind = kernelArg.find(':'); in addKernel() local
382 if (ind == std::string::npos) { in addKernel()
386 std::string kernelVerStr{kernelArg.begin(), kernelArg.begin() + ind}; in addKernel()
387 std::string kernelConfigPath{kernelArg.begin() + ind + 1, kernelArg.end()}; in addKernel()
/system/bt/stack/smp/
Dsmp_keys.cc58 int ind; in smp_debug_print_nbyte_little_endian() local
67 ind = 0; in smp_debug_print_nbyte_little_endian()
69 for (int column = 0, x = 0; (ind < len) && (column < col_count); in smp_debug_print_nbyte_little_endian()
70 column++, ind++) { in smp_debug_print_nbyte_little_endian()
71 x += snprintf((char*)&p_buf[x], sizeof(p_buf) - x, "%02x ", p[ind]); in smp_debug_print_nbyte_little_endian()
86 int ind = 0; in smp_debug_print_nbyte_big_endian() local
92 for (int col = 0, x = 0; (ind < len) && (col < ncols); col++, ind++) { in smp_debug_print_nbyte_big_endian()
94 "%02x ", p[ind]); in smp_debug_print_nbyte_big_endian()
/system/bt/bta/include/
Dbta_hf_client_api.h244 tBTA_HF_CLIENT_IND ind; member
Dbta_ag_api.h273 tBTA_AG_IND ind; member
/system/bt/bta/hf_client/
Dbta_hf_client_at.cc564 evt.ind.type = type; in bta_hf_client_ind()
565 evt.ind.value = value; in bta_hf_client_ind()
567 evt.ind.bd_addr = client_cb->peer_addr; in bta_hf_client_ind()