/prebuilts/ndk/9/platforms/android-9/arch-x86/usr/include/linux/raid/ |
md_u.h | 93 char pathname[4096]; member in struct:mdu_bitmap_file_s
|
/sdk/apkbuilder/etc/ |
apkbuilder.bat | 20 rem and set up progdir to be the fully-qualified pathname of its directory.
|
/sdk/hierarchyviewer/etc/ |
hierarchyviewer1.bat | 20 rem and set up progdir to be the fully-qualified pathname of its directory.
|
/system/core/liblog/ |
logd_write.c | 38 #define log_open(pathname, flags) fakeLogOpen(pathname, flags) 42 #define log_open(pathname, flags) open(pathname, (flags) | O_CLOEXEC)
|
/external/chromium_org/chrome/browser/mac/ |
relauncher.h | 53 // may be either a pathname to an executable file or a pathname to an .app 62 // process in relauncher_args. Unlike args[0], |helper| must be a pathname to
|
/external/valgrind/main/include/ |
pub_tool_libcfile.h | 71 extern SysRes VG_(mknod) ( const Char* pathname, Int mode, UWord dev ); 72 extern SysRes VG_(open) ( const Char* pathname, Int flags, Int mode ); 75 extern Int VG_(fd_open) (const Char* pathname, Int flags, Int mode);
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/ |
WidgetRedirector.py | 16 same as the pathname widget._w. This command is used to invoke the various 30 w = widget._w # widget's (full) Tk pathname 34 # Create a new Tcl command whose name is the widget's pathname, and
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/ |
WidgetRedirector.py | 16 same as the pathname widget._w. This command is used to invoke the various 30 w = widget._w # widget's (full) Tk pathname 34 # Create a new Tcl command whose name is the widget's pathname, and
|
/prebuilts/tools/common/proguard/proguard4.7/docs/ |
feedback.html | 12 window.top.location.replace("index.html#"+window.location.pathname+window.location.hash); 14 var hash="#"+window.location.pathname.replace(window.top.location.pathname.replace("index.html", ""), "");
|
/prebuilts/tools/common/proguard/proguard4.7/docs/manual/retrace/ |
usage.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", ""), "");
|
/bootable/recovery/minadbd/ |
sysdeps.h | 166 extern void* load_file(const char* pathname, unsigned* psize); 322 static __inline__ int adb_open_mode( const char* pathname, int options, int mode ) 324 return open( pathname, options, mode ); 340 static __inline__ int adb_open( const char* pathname, int options ) 342 int fd = open( pathname, options );
|
/external/chromium_org/third_party/npapi/npspy/extern/nspr/ |
prlink.h | 92 ** is a machine-dependent name for the library, such as the full pathname 107 ** a pathname. Mac OS, on the other hand, uses the FSSpec 119 ** a pathname, a Mac code fragment by name, and a Mac code fragment 135 const char *pathname; member in union:PRLibSpec::__anon13497 243 ** Return the pathname of the file that the library "name" was loaded
|
/system/core/adb/ |
sysdeps.h | 167 extern void* load_file(const char* pathname, unsigned* psize); 341 static __inline__ int adb_open_mode( const char* pathname, int options, int mode ) 343 return TEMP_FAILURE_RETRY( open( pathname, options, mode ) ); 347 static __inline__ int adb_open( const char* pathname, int options ) 349 int fd = TEMP_FAILURE_RETRY( open( pathname, options ) );
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
ntpath.py | 2 """Common pathname manipulations, WindowsNT/95 version. 38 # Normalize the case of a pathname and map slashes to backslashes. 43 """Normalize case of pathname. 52 # volume), or if a pathname after the volume letter and colon / UNC resource 64 """Join two or more pathname components, inserting "\\" as needed. 123 """Split a pathname into drive and path specifiers. Returns a 2-tuple 132 """Split a pathname into UNC mount point and relative path specifiers. 165 """Split a pathname. 186 # pathname component; the root is everything before that. 197 """Returns the final component of a pathname""" [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
ntpath.py | 2 """Common pathname manipulations, WindowsNT/95 version. 38 # Normalize the case of a pathname and map slashes to backslashes. 43 """Normalize case of pathname. 52 # volume), or if a pathname after the volume letter and colon / UNC resource 64 """Join two or more pathname components, inserting "\\" as needed. 123 """Split a pathname into drive and path specifiers. Returns a 2-tuple 132 """Split a pathname into UNC mount point and relative path specifiers. 165 """Split a pathname. 186 # pathname component; the root is everything before that. 197 """Returns the final component of a pathname""" [all...] |
/external/llvm/utils/KillTheDoctor/ |
KillTheDoctor.cpp | 224 char PathName[MAX_PATH + 1]; 241 array_lengthof(PathName), 242 PathName, 246 else if (length > array_lengthof(PathName)) { 257 // Make sure PathName is valid. 258 PathName[MAX_PATH] = 0; 259 return PathName;
|
/external/wpa_supplicant_8/src/common/ |
wpa_ctrl.c | 147 * If the ctrl_path isn't an absolute pathname, assume that 233 char pathname[PATH_MAX]; local 239 dirnamelen = (size_t) os_snprintf(pathname, sizeof(pathname), "%s/", 241 if (dirnamelen >= sizeof(pathname)) { 245 namep = pathname + dirnamelen; 249 unlink(pathname);
|
/system/core/toolbox/ |
ls.c | 309 const char* pathname = filename; local 313 pathname = tmp; 315 pathname = filename; 318 if(lstat(pathname, &s) < 0) { 327 return listfile_maclabel(pathname, &s, flags); 329 return listfile_long(pathname, &s, flags); 331 return listfile_size(pathname, filename, &s, flags);
|
/external/skia/tests/ |
PathOpsExtendedTest.cpp | 86 static void showPathContours(SkPath::RawIter& iter, const char* pathName) { 92 SkDebugf(" %s.moveTo(", pathName); 96 SkDebugf(" %s.lineTo(", pathName); 100 SkDebugf(" %s.quadTo(", pathName); 104 SkDebugf(" %s.cubicTo(", pathName); 108 SkDebugf(" %s.close();\n", pathName); 117 static void showPath(const SkPath& path, const char* pathName, bool includeDeclaration) { 140 SkDebugf(" SkPath %s;\n", pathName); 142 SkDebugf(" %s.setFillType(SkPath::%s);\n", pathName, gFillTypeStr[fillType]); 144 showPathContours(iter, pathName); [all...] |
/external/chromium_org/third_party/tcmalloc/chromium/src/windows/ |
port.h | 359 inline int access(const char *pathname, int mode) { 360 return _access(pathname, mode); 362 inline int open(const char *pathname, int flags, int mode = 0) { 363 return _open(pathname, flags, mode); 380 inline int mkdir(const char *pathname, int) { 381 return _mkdir(pathname);
|
/external/chromium_org/third_party/tcmalloc/vendor/src/windows/ |
port.h | 356 inline int access(const char *pathname, int mode) { 357 return _access(pathname, mode); 359 inline int open(const char *pathname, int flags, int mode = 0) { 360 return _open(pathname, flags, mode); 377 inline int mkdir(const char *pathname, int) { 378 return _mkdir(pathname);
|
/external/jmonkeyengine/engine/src/test/jme3test/ |
TestChooser.java | 236 public boolean accept(File pathname) { 237 return (pathname.isDirectory() && !pathname.getName().startsWith(".")) 238 || (pathname.getName().endsWith(".class") 239 && (pathname.getName().indexOf("Test") >= 0) 240 && pathname.getName().indexOf('$') < 0);
|
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/dbgfmts/dwarf2/ |
dwarf2-dbgfmt.c | 96 dbgfmt_dwarf2->filenames[i].pathname = NULL; 127 if (dbgfmt_dwarf2->filenames[i].pathname) 128 yasm_xfree(dbgfmt_dwarf2->filenames[i].pathname);
|
/ndk/sources/host-tools/make-3.81/w32/ |
pathstuff.c | 83 * Convert to forward slashes. Resolve to full pathname optionally 118 * Convert delimiter separated pathnames (e.g. PATH) or single file pathname 184 break; /* thing found was a WINDOWS32 pathname */
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/ |
findertools.py | 704 pathname = EasyDialogs.AskFileForOpen('File to launch:') 705 if pathname: 706 result = launch(pathname) 712 pathname = EasyDialogs.AskFileForOpen('File to print:') 713 if pathname: 714 result = Print(pathname) 720 pathname = EasyDialogs.AskFileForOpen('File to copy:') 721 if pathname: 724 result = copy(pathname, destdir) 730 pathname = EasyDialogs.AskFileForOpen('File to move:' [all...] |