Home
last modified time | relevance | path

Searched refs:lastslash (Results 1 – 4 of 4) sorted by relevance

/external/zlib/src/contrib/minizip/
Dminizip.c436 const char *lastslash = 0; local
441 lastslash = tmpptr;
444 if( lastslash != NULL )
446 savefilenameinzip = lastslash+1; // base filename follows last slash.
/external/protobuf/src/google/protobuf/compiler/csharp/
Dcsharp_helpers.cc125 int lastslash = proto_file.find_last_of("/"); in GetFileNameBase() local
126 std::string base = proto_file.substr(lastslash + 1); in GetFileNameBase()
/external/elfutils/src/
Dunstrip.c297 const char *lastslash = strrchr (path, '/'); in make_directories() local
298 if (lastslash == NULL) in make_directories()
301 while (lastslash > path && lastslash[-1] == '/') in make_directories()
302 --lastslash; in make_directories()
303 if (lastslash == path) in make_directories()
306 char *dir = strndupa (path, lastslash - path); in make_directories()
/external/kmod/tools/
Ddepmod.c924 const char *modname, *lastslash; in depmod_module_add() local
944 lastslash = strrchr(mod->path, '/'); in depmod_module_add()
945 mod->baselen = lastslash - mod->path; in depmod_module_add()
959 size_t uncrelpathlen = lastslash - mod->relpath + modnamesz in depmod_module_add()