Home
last modified time | relevance | path

Searched refs:filepath (Results 1 – 8 of 8) sorted by relevance

/haiku/src/system/libroot/posix/
H A Dlibgen.cpp14 basename(char *filepath) in basename() argument
16 if (filepath == NULL || filepath[0] == '\0') in basename()
19 size_t length = strlen(filepath); in basename()
21 while (filepath[--length] == '/' && length) in basename()
22 filepath[length] = '\0'; in basename()
24 char *last = strrchr(filepath, '/'); in basename()
27 return filepath; in basename()
39 dirname(char *filepath) in dirname() argument
41 if (filepath == NULL || filepath[0] == '\0') in dirname()
44 size_t length = strlen(filepath); in dirname()
[all …]
/haiku/src/tests/kits/media/mp3_reader_test/
H A DFileDataIO.cpp3 FileDataIO::FileDataIO(const char *filepath, uint32 open_mode) in FileDataIO() argument
4 : file(new BFile(filepath, open_mode)) in FileDataIO()
H A DFileDataIO.h10 FileDataIO(const char *filepath, uint32 open_mode);
/haiku/src/tests/kits/media/wav_reader_test/
H A DFileDataIO.cpp3 FileDataIO::FileDataIO(const char *filepath, uint32 open_mode) in FileDataIO() argument
4 : file(new BFile(filepath, open_mode)) in FileDataIO()
H A DFileDataIO.h10 FileDataIO(const char *filepath, uint32 open_mode);
/haiku/src/tools/translation/bitsinfo/
H A Dbitsinfo.cpp58 PrintBitsInfo(const char *filepath, bool bdumppixels) in PrintBitsInfo() argument
60 BFile file(filepath, B_READ_ONLY); in PrintBitsInfo()
85 filepath); in PrintBitsInfo()
216 "file path is opening"), filepath); in PrintBitsInfo()
/haiku/src/tools/translation/tiffinfo/
H A Dtiffinfo.cpp541 int generate_report(const char *filepath) in generate_report() argument
543 BFile file(filepath, B_READ_ONLY); in generate_report()
/haiku/docs/develop/file_systems/
H A Duserlandfs.rst40 API, the inode number has to be converted back to a filepath everytime a function is called.