Home
last modified time | relevance | path

Searched refs:hdl (Results 1 – 13 of 13) sorted by relevance

/external/valgrind/main/exp-sgcheck/tests/
Dpreen_invars.c13 void* hdl = dlopen("./preen_invars_so.so", RTLD_NOW); in main() local
14 assert(hdl); in main()
15 im_a_global_array = dlsym(hdl, "im_a_global_array"); in main()
48 r = dlclose(hdl); in main()
/external/oprofile/libopagent/
Dopagent.h64 int op_close_agent(op_agent_t hdl);
89 int op_write_native_code(op_agent_t hdl, char const * symbol_name,
109 int op_write_debug_line_info(op_agent_t hdl, void const * code,
124 int op_unload_native_code(op_agent_t hdl, uint64_t vma);
Dopagent.c196 int op_close_agent(op_agent_t hdl) in op_close_agent() argument
200 FILE * dumpfile = (FILE *) hdl; in op_close_agent()
221 int op_write_native_code(op_agent_t hdl, char const * symbol_name, in op_write_native_code() argument
229 FILE * dumpfile = (FILE *) hdl; in op_write_native_code()
278 int op_write_debug_line_info(op_agent_t hdl, void const * code, in op_write_debug_line_info() argument
289 FILE * dumpfile = (FILE *) hdl; in op_write_debug_line_info()
354 int op_unload_native_code(op_agent_t hdl, uint64_t vma) in op_unload_native_code() argument
358 FILE * dumpfile = (FILE *) hdl; in op_unload_native_code()
/external/bluetooth/bluedroid/stack/mcap/
Dmca_dsm.c305 tMCA_DCB *mca_dcb_by_hdl(tMCA_DL hdl) in mca_dcb_by_hdl() argument
308 if (hdl && hdl <= MCA_NUM_DCBS && mca_cb.dcb[hdl-1].state) in mca_dcb_by_hdl()
309 p_dcb = &mca_cb.dcb[hdl-1]; in mca_dcb_by_hdl()
Dmca_int.h291 extern tMCA_DCB *mca_dcb_by_hdl(tMCA_DL hdl);
/external/stlport/test/unit/cppunit/
Dtest_main.cpp135 unexpected_handler hdl; in unexpected() local
136 set_unexpected(hdl = set_unexpected((unexpected_handler)0)); in unexpected()
137 hdl(); in unexpected()
/external/stlport/src/
Ddll_main.cpp257 unexpected_handler hdl; in unexpected() local
258 set_unexpected(hdl = set_unexpected((unexpected_handler)0)); in unexpected()
259 hdl(); in unexpected()
/external/bluetooth/bluedroid/bta/hh/
Dbta_hh_act.c192 UINT8 hdl; in bta_hh_sdp_cback() local
215 if(HID_HostAddDev (p_cb->addr, attr_mask, &hdl) == HID_SUCCESS) in bta_hh_sdp_cback()
219 bta_hh_cb.cb_index[hdl] = p_cb->index; in bta_hh_sdp_cback()
228 hdl = p_cb->hid_handle; in bta_hh_sdp_cback()
235 bta_hh_add_device_to_list(p_cb, hdl, attr_mask, in bta_hh_sdp_cback()
342 UINT8 hdl; in bta_hh_start_sdp() local
365 if (HID_HostAddDev (p_cb->addr, p_cb->attr_mask, &hdl) \ in bta_hh_start_sdp()
369 bta_hh_add_device_to_list(p_cb, hdl, p_cb->attr_mask, NULL, in bta_hh_start_sdp()
375 bta_hh_cb.cb_index[hdl] = p_cb->index; in bta_hh_start_sdp()
/external/stlport/test/unit/
Dexception_test.cpp82 std::unexpected_handler hdl = &unexpected_hdl; in unexpected_except() local
83 std::set_unexpected(hdl); in unexpected_except()
/external/bluetooth/bluedroid/stack/avdt/
Davdt_scb.c698 tAVDT_SCB *avdt_scb_by_hdl(UINT8 hdl) in avdt_scb_by_hdl() argument
703 if ((hdl > 0) && (hdl <= AVDT_NUM_SEPS)) in avdt_scb_by_hdl()
705 p_scb = &avdt_cb.scb[hdl - 1]; in avdt_scb_by_hdl()
711 AVDT_TRACE_WARNING("scb hdl %d not allocated", hdl); in avdt_scb_by_hdl()
717 AVDT_TRACE_WARNING("scb hdl %d out of range", hdl); in avdt_scb_by_hdl()
Davdt_int.h612 extern tAVDT_SCB *avdt_scb_by_hdl(UINT8 hdl);
Davdt_scb_act.c992 UINT8 hdl = avdt_scb_to_hdl(p_scb); in avdt_scb_hdl_tc_close() local
1034 (*p_ctrl_cback)(hdl, remote_addr, event, &avdt_ctrl); in avdt_scb_hdl_tc_close()
/external/genext2fs/
Dgenext2fs.c617 struct hdlink_s *hdl; member
783 if(hdlinks.hdl[i].src_inode == inode) in is_hardlink()
1736 add2dir(fs, this_nod, hdlinks.hdl[hdlink].dst_nod, name); in add2fs_from_dir()
1780 if ((hdlinks.hdl = in add2fs_from_dir()
1781 realloc (hdlinks.hdl, (hdlink_cnt + HDLINK_CNT) * in add2fs_from_dir()
1787 hdlinks.hdl[hdlinks.count].src_inode = st.st_ino; in add2fs_from_dir()
1788 hdlinks.hdl[hdlinks.count].dst_nod = nod; in add2fs_from_dir()
2644 hdlinks.hdl = (struct hdlink_s *)malloc(hdlink_cnt * sizeof(struct hdlink_s));
2645 if (!hdlinks.hdl)