Searched defs:filepath (Results 1 - 4 of 4) sorted by relevance

/openjdk7/hotspot/src/share/vm/utilities/
H A Ddecoder_elf.cpp37 bool ElfDecoder::decode(address addr, char *buf, int buflen, int* offset, const char* filepath) { argument
38 assert(filepath, "null file path");
41 ElfFile* file = get_elf_file(filepath);
55 ElfFile* ElfDecoder::get_elf_file(const char* filepath) { argument
60 if (file->same_elf_file(filepath)) {
66 file = new (std::nothrow)ElfFile(filepath);
H A DelfFile.cpp41 ElfFile::ElfFile(const char* filepath) { argument
42 assert(filepath, "null file path");
49 int len = strlen(filepath) + 1;
52 strcpy((char*)m_filepath, filepath);
53 m_file = fopen(filepath, "r");
H A DelfFile.hpp90 ElfFile(const char* filepath);
94 const char* filepath() { function in class:ElfFile
98 bool same_elf_file(const char* filepath) { argument
99 assert(filepath, "null file path");
101 return (m_filepath && !strcmp(filepath, m_filepath));
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/util/
H A DUtil.java555 public static String quote(String filepath) { argument
556 return ("\"" + filepath + "\"");

Completed in 43 milliseconds