HomeSort by relevance Sort by last modified time
    Searched full:pathname (Results 76 - 100 of 1668) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/dbgfmts/codeview/
cv-dbgfmt.h 31 char *pathname; /* full pathname (drive+basepath+filename) */ member in struct:__anon20220
33 unsigned long str_off; /* offset into pathname string table */
  /development/ndk/sources/android/libportable/arch-mips/
open.c 76 int WRAP(open)(const char *pathname, int flags, ...)
88 return __openat(AT_FDCWD, pathname, flags, mode);
91 int WRAP(openat)(int dirfd, const char *pathname, int flags, ...)
103 return __openat(dirfd, pathname, flags, mode);
  /external/e2fsprogs/misc/
uuidd.8.in 66 Specify the pathname where the pid file should be written. By default,
70 Specify the pathname used for the unix-domain socket used by uuidd. By
71 default, the pathname used is /var/lib/libuuid/request. This is primarily
72 for debugging purposes, since the pathname is hard-coded in the libuuid
  /external/strace/
inotify.c 15 /* pathname */
  /external/valgrind/main/
vg-in-place 3 # Figure out an absolute pathname to this file, based on
  /external/chromium_org/remoting/webapp/
cs_oauth2_trampoline.js 14 if (window.location.pathname == officialPath ||
15 window.location.pathname == unofficialPath) {
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitruby/PrettyPatch/
prettify.rb 4 require 'pathname'
7 $LOAD_PATH << Pathname.new(__FILE__).dirname.realpath.to_s
  /external/chromium_org/tools/telemetry/telemetry/core/backends/chrome/
inspector_page_unittest.py 21 self._tab.EvaluateJavaScript('document.location.pathname;'),
28 self._tab.EvaluateJavaScript('document.location.pathname;'),
  /dalvik/dx/src/com/android/dx/cf/direct/
ClassPathOpener.java 39 /** {@code non-null;} pathname to start with */
40 private final String pathname; field in class:ClassPathOpener
108 * @param pathname {@code non-null;} path element to process
114 public ClassPathOpener(String pathname, boolean sort, Consumer consumer) {
115 this(pathname, sort, acceptAll, consumer);
121 * @param pathname {@code non-null;} path element to process
127 public ClassPathOpener(String pathname, boolean sort, FileNameFilter filter,
129 this.pathname = pathname;
142 File file = new File(pathname);
    [all...]
  /frameworks/base/core/java/android/os/
SELinux.java 76 * @param path the pathname of the file object.
139 * @param pathname The pathname of the file to be relabeled.
141 * @exception NullPointerException if the pathname is a null object.
143 public static boolean restorecon(String pathname) throws NullPointerException {
144 if (pathname == null) { throw new NullPointerException(); }
145 return native_restorecon(pathname, 0);
155 * @param pathname The pathname of the file to be relabeled.
158 private static native boolean native_restorecon(String pathname, int flags)
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
file.h 87 /** Split a UNIX pathname into head (directory) and tail (base filename)
90 * \param path pathname
97 /** Split a Windows pathname into head (directory) and tail (base filename)
100 * \param path pathname
107 /** Split a pathname into head (directory) and tail (base filename) portions.
110 * \param path pathname
125 * \return Current working directory pathname (newly allocated).
130 /** Convert a relative or absolute pathname into an absolute pathname.
132 * \param path pathname
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/base/
diskcache.cc 284 Pathname pathname; local
285 pathname.SetFolder(folder_);
286 pathname.SetBasename(buffer);
287 pathname.SetExtension(extension);
293 return pathname.pathname();
298 Pathname pathname(filename);
300 if (1 != sscanf(pathname.extension().c_str(), ".%u", &tempdex)
    [all...]
  /external/chromium_org/third_party/webrtc/base/
diskcache.cc 267 Pathname pathname; local
268 pathname.SetFolder(folder_);
269 pathname.SetBasename(buffer);
270 pathname.SetExtension(extension);
276 return pathname.pathname();
281 Pathname pathname(filename);
283 if (1 != sscanf(pathname.extension().c_str(), ".%u", &tempdex)
    [all...]
  /external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/base/
ftmac.c 42 resource fork. So we just grab the stream->pathname field.
273 FT_FSPathMakeRes( const UInt8* pathname,
280 if ( noErr != FSPathMakeRef( pathname, &ref, FALSE ) )
296 /* Return the file type for given pathname */
298 get_file_type_from_path( const UInt8* pathname )
304 if ( noErr != FSPathMakeRef( pathname, &ref, FALSE ) )
504 /* Pathname for FSRef can be in various formats: HFS, HFS+, and POSIX. */
539 const UInt8* pathname )
555 err = lookup_lwfn_by_fond( pathname, lwfn_file_name,
694 const UInt8* pathname,
1002 UInt8 pathname[PATH_MAX]; local
    [all...]
  /cts/tools/device-setup/TestDeviceSetup/src/android/tests/getinfo/
RootProcessScanner.java 88 private static boolean isUnapprovedRootProcess(File pathname)
90 return isPidDirectory(pathname)
91 && !isKernelProcess(pathname)
92 && isRootProcess(pathname);
95 private static boolean isPidDirectory(File pathname) {
96 return pathname.isDirectory() && Pattern.matches("\\d+", pathname.getName());
  /frameworks/testing/support/src/android/support/test/internal/runner/
ClassPathScanner.java 44 * Tests whether or not the specified abstract pathname should be included in a class path
103 public boolean accept(String pathName) {
104 return !pathName.contains("$");
127 public boolean accept(String pathName) {
128 return pathName.startsWith(mPkgName);
151 public boolean accept(String pathName) {
152 return !pathName.startsWith(mPkgName);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
os2emxpath.py 2 """Common pathname manipulations, OS/2 EMX version.
31 # Normalize the case of a pathname and map slashes to backslashes.
36 """Normalize case of pathname.
45 """Join two or more pathname components, inserting sep as needed"""
59 """Split a pathname into UNC mount point and relative path specifiers.
89 """Returns the final component of a pathname"""
96 """Returns the directory component of a pathname"""
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
os2emxpath.py 2 """Common pathname manipulations, OS/2 EMX version.
31 # Normalize the case of a pathname and map slashes to backslashes.
36 """Normalize case of pathname.
45 """Join two or more pathname components, inserting sep as needed"""
59 """Split a pathname into UNC mount point and relative path specifiers.
89 """Returns the final component of a pathname"""
96 """Returns the directory component of a pathname"""
  /development/testrunner/
android_build.py 31 """Returns the full pathname of the "top" of the Android development tree.
52 """Returns the full pathname of out/host/arch of the Android development tree.
95 """Returns the full pathname of the "out" of the Android development tree.
110 """Compute the full pathname to the host binary directory.
131 """Returns the full pathname to the target/product directory.
153 """Returns the full pathname to target/product data/nativetest/ directory.
172 """Returns the full pathname to the target/product system/bin directory.
192 """Returns the full pathname to the host java library output directory.
212 """Returns the full pathname to the test app build output directory.
  /external/libselinux/src/
android.c 1037 static int pkgdir_selabel_lookup(const char *pathname,
1049 if (!strncmp(pathname, DATA_DATA_PREFIX, sizeof(DATA_DATA_PREFIX)-1)) {
1050 pathname += sizeof(DATA_DATA_PREFIX) - 1;
1051 } else if (!strncmp(pathname, DATA_USER_PREFIX, sizeof(DATA_USER_PREFIX)-1)) {
1052 pathname += sizeof(DATA_USER_PREFIX) - 1;
1053 while (isdigit(*pathname))
1054 pathname++;
1055 if (*pathname == '/')
1056 pathname++;
1062 if (!(*pathname))
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
DOMURLUtilsReadOnly.h 64 static String pathname(const KURL& url) { return url.path(); } function in class:WebCore::DOMURLUtilsReadOnly
65 String pathname() { return pathname(url()); } function in class:WebCore::DOMURLUtilsReadOnly
  /external/chromium_org/third_party/libjingle/source/talk/session/media/
mediarecorder_unittest.cc 44 talk_base::Pathname(path), "wb");
55 sink_.reset(new RtpDumpSink(Open(path_.pathname())));
84 talk_base::Pathname path_;
100 EXPECT_TRUE(talk_base::Filesystem::IsFile(path_.pathname()));
186 talk_base::Pathname path;
189 std::string send_file = path.pathname();
191 std::string recv_file = path.pathname();
261 talk_base::Pathname path;
264 std::string send_header_file = path.pathname();
266 std::string recv_header_file = path.pathname();
    [all...]
  /external/oprofile/libutil/
op_file.h 64 typedef void (*get_pathname_callback)(char const * pathname, void * name_list);
77 * @param filter a pathname filter
86 * dir is of type 'dir' and its complete pathname contains a match to
  /external/proguard/docs/manual/
index.html 11 window.top.location.replace("../index.html#"+window.location.pathname+window.location.hash);
13 var hash="#"+window.location.pathname.replace(window.top.location.pathname.replace("index.html", ""), "");
  /external/proguard/docs/
quality.html 11 window.top.location.replace("index.html#"+window.location.pathname+window.location.hash);
13 var hash="#"+window.location.pathname.replace(window.top.location.pathname.replace("index.html", ""), "");

Completed in 1853 milliseconds

1 2 34 5 6 7 8 91011>>