Home | History | Annotate | Download | only in elff

Lines Matching refs:handle

34 elff_close(ELFF_HANDLE handle)

36 if (handle != NULL) {
37 delete reinterpret_cast<ElfFile*>(handle);
42 elff_is_exec(ELFF_HANDLE handle)
44 assert(handle != NULL);
45 if (handle == NULL) {
49 return reinterpret_cast<ElfFile*>(handle)->is_exec();
53 elff_get_pc_address_info(ELFF_HANDLE handle,
57 assert(handle != NULL && address_info != NULL);
58 if (handle == NULL || address_info == NULL) {
63 if (reinterpret_cast<ElfFile*>(handle)->get_pc_address_info(address,
72 elff_free_pc_address_info(ELFF_HANDLE handle, Elf_AddressInfo* address_info)
74 assert(handle != NULL && address_info != NULL);
75 if (handle == NULL || address_info == NULL) {
78 reinterpret_cast<ElfFile*>(handle)->free_pc_address_info(address_info);