/external/bluetooth/bluedroid/bta/include/ |
bta_hl_co.h | 47 ** p_num_of_mdep (output) - number of MDEP configurations supported 58 ** Description This function is called to find out whether the SOURCE MDEP 63 ** Returns Bloolean - TRUE advertise the SOURCE MDEP configuration 73 ** configuration for the specified mdep index and it also assigns 74 ** the MDEP ID for the specified mdep index 77 ** mdep_idx - the mdep index 79 ** mdep_id - the assigned MDEP ID for the specified medp_idx 80 ** p_mdl_cfg (output) - pointer to the MDEP configuration
|
bta_hl_api.h | 63 per MDEP ID */ 248 tBTA_HL_MDEP_ID mdep_id; /* MDEP ID 0x01-0x7F */ 255 tBTA_HL_MDEP mdep[BTA_HL_NUM_MDEPS]; member in struct:__anon5463 322 tBTA_HL_MDEP_ID local_mdep_id; /* local MDEP ID */ 323 tBTA_HL_MDEP_ID peer_mdep_id; /* peer mdep id */ 351 tBTA_HL_MDEP_ID local_mdep_id; /* local MDEP ID */ 370 UINT8 num_mdeps; /* number of mdep elements from SDP*/
|
/external/bluetooth/bluedroid/bta/hl/ |
bta_hl_sdp.c | 48 /* mdep sequence */ 58 /* for each mdep list */ 284 if (p_cb->sup_feature.mdep[i].mdep_id) 286 mdep_id = (UINT8)p_cb->sup_feature.mdep[i].mdep_id; 287 mdep_role = (UINT8)p_cb->sup_feature.mdep[i].mdep_cfg.mdep_role; 289 APPL_TRACE_DEBUG("num_of_mdep_data_types %d ", p_cb->sup_feature.mdep[i].mdep_cfg.num_of_mdep_data_types); 290 for (j=0; j<p_cb->sup_feature.mdep[i].mdep_cfg.num_of_mdep_data_types; j++) 294 sup_feature_list.list_elem[cnt].data_type = p_cb->sup_feature.mdep[i].mdep_cfg.data_cfg[j].data_type; 295 if (p_cb->sup_feature.mdep[i].mdep_cfg.data_cfg[j].desp[0] != '\0') 297 sup_feature_list.list_elem[cnt].p_mdep_desp = p_cb->sup_feature.mdep[i].mdep_cfg.data_cfg[j].desp [all...] |
bta_hl_utils.c | 423 tBTA_HL_MDEP *p_mdep= &p_acb->sup_feature.mdep[mdep_idx]; [all...] |
bta_hl_int.h | 299 tBTA_HL_MDEP_ID local_mdep_id; /* local MDEP ID */ 300 tBTA_HL_MDEP_ID peer_mdep_id; /* peer mdep id */ 595 #define BTA_HL_GET_MDEP_CFG_PTR(app_idx, mdep_cfg_idx) &(bta_hl_cb.acb[(app_idx)].sup_feature.mdep[mdep_cfg_idx].mdep_cfg) 597 &(bta_hl_cb.acb[(app_idx)].sup_feature.mdep[mdep_cfg_idx].mdep_cfg.data_cfg[data_cfg_idx]) [all...] |
bta_hl_main.c | [all...] |
bta_hl_act.c | [all...] |
/external/bluetooth/bluedroid/btif/co/ |
bta_hl_co.c | 66 ** p_num_of_mdep (output) - number of MDEP configurations supported 93 ** Description This function is called to find out whether the SOURCE MDEP 98 ** Returns Bloolean - TRUE advertise the SOURCE MDEP configuration 122 ** configuration for the specified mdep index and it also assigns 123 ** the MDEP ID for the specified mdep index 126 ** mdep_idx - the mdep index 128 ** mdep_id - the assigned MDEP ID for the specified medp_idx 129 ** p_mdl_cfg (output) - pointer to the MDEP configuration 150 p_btif_hl_cb->acb[app_idx].sup_feature.mdep[idx].mdep_id = mdep_id [all...] |
/external/valgrind/main/coregrind/m_syswrap/ |
syscall-x86-darwin.S | 79 /* DO_SYSCALL MACH|MDEP|UNIX */ 81 #define MDEP 2 141 .elseif $0 == MDEP 205 DO_SYSCALL MDEP 233 ML_(blksys_setup_MDEP): .long MK_L_SCCLASS_N(MDEP,1) 234 ML_(blksys_restart_MDEP): .long MK_L_SCCLASS_N(MDEP,2) 235 ML_(blksys_complete_MDEP): .long MK_L_SCCLASS_N(MDEP,3) 236 ML_(blksys_committed_MDEP): .long MK_L_SCCLASS_N(MDEP,4) 237 ML_(blksys_finished_MDEP): .long MK_L_SCCLASS_N(MDEP,5)
|
syscall-amd64-darwin.S | 79 /* DO_SYSCALL MACH|MDEP|UNIX */ 81 #define MDEP 2 207 DO_SYSCALL MDEP 235 ML_(blksys_setup_MDEP): .quad MK_L_SCCLASS_N(MDEP,1) 236 ML_(blksys_restart_MDEP): .quad MK_L_SCCLASS_N(MDEP,2) 237 ML_(blksys_complete_MDEP): .quad MK_L_SCCLASS_N(MDEP,3) 238 ML_(blksys_committed_MDEP): .quad MK_L_SCCLASS_N(MDEP,4) 239 ML_(blksys_finished_MDEP): .quad MK_L_SCCLASS_N(MDEP,5)
|
syswrap-main.c | 588 // int $0x82 = mdep, 32-bit result [all...] |
/external/llvm/lib/Transforms/Scalar/ |
MemCpyOptimizer.cpp | 347 bool processMemCpyMemCpyDependence(MemCpyInst *M, MemCpyInst *MDep, 742 /// memory dependence of memcpy 'M' is the memcpy 'MDep'. Try to simplify M to 743 /// copy from MDep's input if we can. MSize is the size of M's copy. 745 bool MemCpyOpt::processMemCpyMemCpyDependence(MemCpyInst *M, MemCpyInst *MDep, 749 if (M->getSource() != MDep->getDest() || MDep->isVolatile()) 754 // ignore the input and let someone else zap MDep. This handles cases like: 757 if (M->getSource() == MDep->getSource()) 762 ConstantInt *MDepLen = dyn_cast<ConstantInt>(MDep->getLength()); 776 // TODO: If the code between M and MDep is transparent to the destination "c" [all...] |
/external/bluetooth/bluedroid/stack/include/ |
mca_api.h | 50 /* MDEP data type. */ 51 #define MCA_TDEP_ECHO 0 /* MDEP for echo test */ 52 #define MCA_TDEP_DATA 1 /* MDEP for normal data */ 101 /* This structure contains parameters to create a MDEP. */ 103 UINT8 type; /* MCA_TDEP_DATA, or MCA_TDEP_ECHO. a regiatration may have only one MCA_TDEP_ECHO MDEP */ 104 UINT8 max_mdl; /* The maximum number of MDLs for this MDEP (max is MCA_NUM_MDLS) */ 144 UINT8 dep_id; /* MDEP ID */ 283 ** Description Create a data endpoint. If the MDEP is created successfully, 284 ** the MDEP ID is returned in *p_dep. After a data endpoint is
|
mca_defs.h | 63 #define MCA_RSP_BAD_MDEP 0x03 /* The MDEP ID referenced does not exist on this device. */ 64 #define MCA_RSP_MDEP_BUSY 0x04 /* The requested MDEP currently has as many active MDLs as it can manage simultaneously. */ 83 #define MCA_MAX_MDEP_ID 0x7F /* the valid range for MDEP ID is 1-0x7F */
|
/external/bluetooth/bluedroid/stack/mcap/ |
mca_int.h | 48 UINT8 mdep_id; /* the MDEP ID associated with this request/response */ 170 UINT8 tcid; /* transport channel id (0, for control channel. (MDEP ID + 1) for data channel) */ 186 tMCA_CS dep[MCA_NUM_DEPS]; /* the registration info for each MDEP */ 243 tMCA_CS *p_cs; /* the associated MDEP info. p_cs->type is the mdep id(internal use) */
|
mca_api.c | 209 ** Description Create a data endpoint. If the MDEP is created successfully, 210 ** the MDEP ID is returned in *p_dep. After a data endpoint is 243 MCA_TRACE_ERROR ("Already has ECHO MDEP"); 253 /* non-echo MDEP starts from 1 */ 260 /* internally use type as the mdep id */ 306 /* make sure no MDL exists for this MDEP */ 701 MCA_TRACE_ERROR ("Out of MDL for this MDEP"); [all...] |
mca_cact.c | 369 MCA_TRACE_ERROR ("not a valid local mdep id"); 382 MCA_TRACE_ERROR ("the mdep is currently using max_mdl");
|
/hardware/libhardware/include/hardware/ |
bt_hl.h | 59 const char *mdep_description; /* MDEP description to be used in the SDP (optional); null terminated */
|
/external/bluetooth/bluedroid/btif/src/ |
btif_hl.c | 543 ** Description This function finds the SDP record index using MDEP filter parameters 558 ** Description This function finds the SDP record index using MDEP filter parameters 656 UINT16 data_type = p_acb->sup_feature.mdep[mdep_cfg_idx].mdep_cfg.data_cfg[0].data_type; [all...] |
/external/valgrind/main/coregrind/ |
m_syscall.c | 494 * MDEP: int $0x82 499 * MACH,MDEP: the return value comes back in eax 502 * MACH,MDEP: no error is returned 546 // mdep trap: 32-bit result in %eax, no error flag 565 * MACH,MDEP: the return value comes back in rax 568 * MACH,MDEP: no error is returned
|
m_vkiscnums.c | 70 case VG_DARWIN_SYSCALL_CLASS_MDEP: classname = "mdep"; break;
|
/external/valgrind/main/include/ |
pub_tool_basics.h | 150 MACH, MDEP: 174 SysRes_MDEP, // MDEP, result is _wLO
|
/external/valgrind/main/include/vki/ |
vki-scnums-darwin.h | 117 // mdep syscalls [all...] |
/external/bluetooth/bluedroid/include/ |
bt_target.h | [all...] |
/external/libnfc-nci/src/include/ |
bt_target.h | [all...] |