Home
last modified time | relevance | path

Searched refs:G_IS_DIR_SEPARATOR (Results 1 – 10 of 10) sorted by relevance

/external/bluetooth/glib/glib/
Dgutils.c759 while (last_nonslash >= 0 && G_IS_DIR_SEPARATOR (file_name [last_nonslash])) in g_path_get_basename()
774 while (base >=0 && !G_IS_DIR_SEPARATOR (file_name [base])) in g_path_get_basename()
804 if (G_IS_DIR_SEPARATOR (file_name[0])) in g_path_is_absolute()
810 file_name[1] == ':' && G_IS_DIR_SEPARATOR (file_name[2])) in g_path_is_absolute()
834 if (G_IS_DIR_SEPARATOR (file_name[0]) && in g_path_skip_root()
835 G_IS_DIR_SEPARATOR (file_name[1]) && in g_path_skip_root()
837 !G_IS_DIR_SEPARATOR (file_name[2])) in g_path_skip_root()
855 while (file_name[0] && !G_IS_DIR_SEPARATOR (file_name[0])) in g_path_skip_root()
859 if (G_IS_DIR_SEPARATOR (file_name[0])) in g_path_skip_root()
868 if (G_IS_DIR_SEPARATOR (file_name[0])) in g_path_skip_root()
[all …]
Dgutils.h47 #define G_IS_DIR_SEPARATOR(c) ((c) == G_DIR_SEPARATOR || (c) == '/') macro
57 #define G_IS_DIR_SEPARATOR(c) ((c) == G_DIR_SEPARATOR)
Dgfileutils.c94 while (*p && !G_IS_DIR_SEPARATOR (*p)) in g_mkdir_with_parents()
121 while (*p && G_IS_DIR_SEPARATOR (*p)) in g_mkdir_with_parents()
1311 if (G_IS_DIR_SEPARATOR (tmpdir [strlen (tmpdir) - 1])) in g_file_open_tmp()
Dgstdio.c461 while (len > 0 && G_IS_DIR_SEPARATOR (wfilename[len-1])) in g_stat()
/external/bluetooth/glib/gio/
Dglocalfile.c264 G_IS_DIR_SEPARATOR (*p); in canonicalize_filename()
277 if (p[0] == '.' && (p[1] == 0 || G_IS_DIR_SEPARATOR (p[1]))) in canonicalize_filename()
281 else if (p[0] == '.' && p[1] == '.' && (p[2] == 0 || G_IS_DIR_SEPARATOR (p[2]))) in canonicalize_filename()
288 while (p > start && !G_IS_DIR_SEPARATOR (*p)) in canonicalize_filename()
290 if (G_IS_DIR_SEPARATOR (*p)) in canonicalize_filename()
297 while (*p != 0 && !G_IS_DIR_SEPARATOR (*p)) in canonicalize_filename()
309 while (*q && G_IS_DIR_SEPARATOR (*q)) in canonicalize_filename()
317 if (p > start && G_IS_DIR_SEPARATOR (*(p-1))) in canonicalize_filename()
538 G_IS_DIR_SEPARATOR (prefix[prefix_len-1])) in match_prefix()
553 if (remainder != NULL && G_IS_DIR_SEPARATOR (*remainder)) in g_local_file_prefix_matches()
[all …]
Dglocalfileinfo.c1446 while (len > 0 && G_IS_DIR_SEPARATOR (wpath[len-1])) in _g_local_file_info_get()
/external/bluetooth/glib/tests/
Duri-test.c327 if ((G_IS_DIR_SEPARATOR (*a) && G_IS_DIR_SEPARATOR (*b)) || in safe_strcmp_filename()
/external/bluetooth/glib/docs/reference/glib/
Dglib-sections.txt134 G_IS_DIR_SEPARATOR
/external/bluetooth/glib/
DChangeLog.pre-2-6748 * glib/gfileutils.c: G_IS_DIR_SEPARATOR is defined in gutils.h now,
794 * glib/gutils.h (G_IS_DIR_SEPARATOR):
/external/bluetooth/glib/docs/reference/
DChangeLog2343 * glib/glib-sections.txt: Document G_IS_DIR_SEPARATOR.