Home
last modified time | relevance | path

Searched refs:i93_cmd (Results 1 – 3 of 3) sorted by relevance

/system/nfc/src/nfa/rw/
Dnfa_rw_api.cc876 p_msg->params.i93_cmd.afi_present = afi_present; in NFA_RwI93Inventory()
877 p_msg->params.i93_cmd.afi = afi; in NFA_RwI93Inventory()
880 p_msg->params.i93_cmd.uid_present = true; in NFA_RwI93Inventory()
881 memcpy(p_msg->params.i93_cmd.uid, p_uid, I93_UID_BYTE_LEN); in NFA_RwI93Inventory()
883 p_msg->params.i93_cmd.uid_present = false; in NFA_RwI93Inventory()
924 p_msg->params.i93_cmd.uid_present = true; in NFA_RwI93StayQuiet()
925 memcpy(p_msg->params.i93_cmd.uid, p_uid, I93_UID_BYTE_LEN); in NFA_RwI93StayQuiet()
967 p_msg->params.i93_cmd.first_block_number = block_number; in NFA_RwI93ReadSingleBlock()
1014 p_msg->params.i93_cmd.first_block_number = block_number; in NFA_RwI93WriteSingleBlock()
1015 p_msg->params.i93_cmd.p_data = (uint8_t*)(p_msg + 1); in NFA_RwI93WriteSingleBlock()
[all …]
Dnfa_rw_act.cc2360 if (p_data->op_req.params.i93_cmd.uid_present) { in nfa_rw_i93_command()
2361 status = RW_I93Inventory(p_data->op_req.params.i93_cmd.afi_present, in nfa_rw_i93_command()
2362 p_data->op_req.params.i93_cmd.afi, in nfa_rw_i93_command()
2363 p_data->op_req.params.i93_cmd.uid); in nfa_rw_i93_command()
2365 status = RW_I93Inventory(p_data->op_req.params.i93_cmd.afi_present, in nfa_rw_i93_command()
2366 p_data->op_req.params.i93_cmd.afi, nullptr); in nfa_rw_i93_command()
2372 status = RW_I93StayQuiet(p_data->op_req.params.i93_cmd.uid); in nfa_rw_i93_command()
2378 p_data->op_req.params.i93_cmd.first_block_number); in nfa_rw_i93_command()
2384 p_data->op_req.params.i93_cmd.first_block_number, in nfa_rw_i93_command()
2385 p_data->op_req.params.i93_cmd.p_data); in nfa_rw_i93_command()
[all …]
/system/nfc/src/nfa/include/
Dnfa_rw_int.h229 tNFA_RW_OP_PARAMS_I93_CMD i93_cmd; member