Searched refs:m_funcDescs (Results 1 - 2 of 2) sorted by relevance

/openjdk9/hotspot/src/share/vm/utilities/
H A DelfFuncDescTable.cpp42 m_funcDescs = NULL;
51 m_funcDescs = (address*)os::malloc(shdr.sh_size, mtInternal);
52 if (m_funcDescs) {
54 fread((void*)m_funcDescs, shdr.sh_size, 1, file) != 1 ||
57 os::free(m_funcDescs);
58 m_funcDescs = NULL;
70 if (m_funcDescs != NULL) {
71 os::free(m_funcDescs);
80 if (m_funcDescs != NULL) {
83 return m_funcDescs[(inde
[all...]
H A DelfFuncDescTable.hpp133 address* m_funcDescs; member in class:ElfFuncDescTable

Completed in 91 milliseconds