Home
last modified time | relevance | path

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

/external/u-boot/scripts/
Dcheckstack.pl113 my ($func, $file, $lastslash);
122 $lastslash = rindex($file, "/");
123 if ($lastslash != -1) {
124 $file = substr($file, $lastslash + 1);
/external/zlib/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/v8/third_party/zlib/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.c305 const char *lastslash = strrchr (path, '/'); in make_directories() local
306 if (lastslash == NULL) in make_directories()
309 while (lastslash > path && lastslash[-1] == '/') in make_directories()
310 --lastslash; in make_directories()
311 if (lastslash == path) in make_directories()
314 char *dir = strndupa (path, lastslash - path); in make_directories()
/external/kmod/tools/
Ddepmod.c996 const char *modname, *lastslash; in depmod_module_add() local
1016 lastslash = strrchr(mod->path, '/'); in depmod_module_add()
1017 mod->baselen = lastslash - mod->path; in depmod_module_add()
1031 size_t uncrelpathlen = lastslash - mod->relpath + modnamesz in depmod_module_add()