HomeSort by relevance Sort by last modified time
    Searched defs:slash (Results 26 - 50 of 64) sorted by null

12 3

  /external/bluetooth/bluez/gdbus/
object.c 462 char *parent_path, *slash; local
465 slash = strrchr(parent_path, '/');
466 if (slash == NULL)
469 if (slash == parent_path && parent_path[1] != '\0')
472 *slash = '\0';
  /external/bluetooth/glib/gmodule/
gmodule.c 414 gchar *slash = strrchr (file_name, G_DIR_SEPARATOR); local
417 if (!dot || dot < slash)
  /external/iproute2/lib/
utils.c 329 char *slash; local
344 slash = strchr(arg, '/');
345 if (slash)
346 *slash = 0;
361 if (slash) {
362 if (get_netmask(&plen, slash+1, 0)
372 if (slash)
373 *slash = '/';
  /frameworks/base/voip/java/android/net/sip/
SimpleSessionDescription.java 409 int slash = parts[2].indexOf('/'); local
410 return (slash < 0) ? parts[2] : parts[2].substring(0, slash);
  /frameworks/native/cmds/dumpstate/
utils.c 302 /* skip initial slash */
393 char *slash = strrchr(anr_traces_dir, '/'); local
394 if (slash != NULL) {
395 *slash = '\0';
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/
ExplodedRenderingHelper.java 372 int slash = reference.indexOf('/'); local
373 return reference.substring(slash);
  /bootable/recovery/applypatch/
applypatch.c 729 char* slash = strchr(target_filename+1, '/'); local
730 if (slash != NULL) {
731 int count = slash - target_filename;
  /external/bluetooth/glib/glib/
gfileutils.c 1271 const char *slash; local
1276 if ((slash = strchr (tmpl, G_DIR_SEPARATOR)) != NULL
1278 || (strchr (tmpl, '/') != NULL && (slash = "/"))
1284 c[0] = *slash;
    [all...]
gconvert.c 1752 char *p, *slash; local
    [all...]
  /external/openssh/
misc.c 523 u_int len, slash; local
531 slash = path - filename;
532 if (slash > sizeof(user) - 1)
534 memcpy(user, filename, slash);
535 user[slash] = '\0';
  /frameworks/base/tools/aidl/
aidl.cpp 646 const char* slash = "\\"; local
649 slash = "";
658 fprintf(to, " %s %s\n", options.inputFileName.c_str(), slash);
662 slash = "";
665 fprintf(to, " %s %s\n", import->filename, slash);
    [all...]
  /frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
DelegateMethodAdapter2.java 195 int slash = mClassName.lastIndexOf('/'); local
197 if (dol != -1 && dol > slash && dol == mClassName.indexOf('$')) {
  /ndk/sources/host-tools/make-3.81/
dir.c 752 char *slash;
786 slash = dirend;
801 return dir_file_exists_p (dirname, slash + 1);
847 char *slash = dirend;
863 filename = p = slash + 1;
929 char *slash = dirend;
945 p = filename = slash + 1;
747 char *slash; local
841 char *slash = dirend; local
922 char *slash = dirend; local
  /system/core/init/
devices.c 385 char *slash; local
410 slash = strchr(++parent, '/');
411 if (!slash)
413 width = slash - parent;
437 char *slash; local
481 slash = strrchr(path, '/');
482 if (asprintf(&links[link_num], "%s/%s", link_path, slash + 1) > 0)
  /external/chromium/net/http/
http_response_headers.cc 1082 size_t slash = etag_value.find('\/'); local
    [all...]
http_cache_unittest.cc 43 size_t slash = key.find('/'); local
44 DCHECK(slash != std::string::npos);
45 url = GURL(key.substr(slash + 1));
    [all...]
  /libcore/luni/src/main/java/java/net/
URI.java 86 * begin with the slash character: {@code /}. The contents of the
1055 int slash = path.indexOf('\/'); local
    [all...]
  /ndk/sources/host-tools/sed-4.2.1/sed/
compile.c 537 static struct buffer *match_slash P_((int slash, int regex));
539 match_slash(slash, regex)
540 int slash;
549 /* We allow only 1 byte characters for a slash. */
550 if (BRLEN (slash, &cur_stat) == -2)
561 if (ch == slash)
572 else if (ch != '\n' && (ch != slash || (!regex && ch == '&')))
1277 int slash;
1279 slash = inchar();
1280 if ( !(b = match_slash(slash, true))
1269 int slash; local
1292 int slash; local
    [all...]
  /external/chromium/sdch/open-vcdiff/src/
gflags.cc 535 // Stop going backwards at kRootDir; and skip by the first slash.
1480 const char* slash = strrchr(argv0, '\/'); local
    [all...]
  /external/dbus/test/
decode-gcov.c 1336 int slash; local
    [all...]
  /external/dnsmasq/src/
option.c 832 char *slash; local
847 slash = split_chr(cp, '/');
849 if (!slash)
857 int netsize = atoi(slash);
    [all...]
  /frameworks/base/core/java/android/webkit/
BrowserFrame.java 707 int slash = url.indexOf('/'); local
708 int dot = url.indexOf('.', slash);
709 if (slash == -1 || dot == -1) {
713 String subClassName = url.substring(0, slash);
714 String fieldName = url.substring(slash + 1, dot);
    [all...]
  /frameworks/base/services/java/com/android/server/
WallpaperManagerService.java 1077 int slash = resName.lastIndexOf('\/'); local
    [all...]
BackupManagerService.java 3853 int slash = info.path.indexOf('\/'); local
    [all...]
  /external/opencv/cv/src/
cvhaar.cpp 1662 const char* slash; local
    [all...]

Completed in 1365 milliseconds

12 3