/vbox/src/VBox/Devices/EFI/Firmware/StdLib/Include/ |
H A D | libgen.h | 14 char *dirname(char *path);
|
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/test/tst/common/funcs/ |
H A D | tst.cleanpath.d | 33 path[i++] = "/foo/bar/baz"; 34 path[i++] = "/foo/bar///baz/"; 35 path[i++] = "/foo/bar/baz/"; 36 path[i++] = "/foo/bar/baz//"; 37 path[i++] = "/foo/bar/baz/."; 38 path[i++] = "/foo/bar/baz/./"; 39 path[i++] = "/foo/bar/../../baz/.//"; 40 path[i++] = "foo/bar/./././././baz/"; 41 path[i++] = "/foo/bar/baz/../../../../../../"; 42 path[ [all...] |
/vbox/src/VBox/Devices/PC/ipxe/src/include/ |
H A D | libgen.h | 6 extern char * basename ( char *path ); 7 extern char * dirname ( char *path );
|
/vbox/src/VBox/Devices/PC/ipxe/src/core/ |
H A D | basename.c | 24 * Get base name of path 32 * Return base name from path 34 * @v path Full path 37 char * basename ( char *path ) { 40 basename = strrchr ( path, '/' ); 41 return ( basename ? ( basename + 1 ) : path ); 45 * Return directory name from path 47 * @v path Full path [all...] |
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/Stdio/ |
H A D | mktemp.c | 54 _mktemp(char *path) argument 56 _DIAGASSERT(path != NULL); 58 return (__gettemp(path, (int *)NULL, 0) ? path : (char *)NULL); 65 mktemp(char *path) argument 68 _DIAGASSERT(path != NULL); 70 return (__gettemp(path, (int *)NULL, 0) ? path : (char *)NULL);
|
H A D | mkdtemp.c | 61 mkdtemp(path) 62 char *path; 64 _DIAGASSERT(path != NULL); 66 return (GETTEMP(path, (int *)NULL, 1) ? path : (char *)NULL);
|
H A D | mkstemp.c | 67 mkstemp(char *path) 71 _DIAGASSERT(path != NULL); 73 return (GETTEMP(path, &fd, 0) ? fd : -1);
|
H A D | gettemp.c | 74 char *path, 88 _DIAGASSERT(path != NULL); 91 /* Move to end of path and count trailing X's. */ 92 for (trv = path; *trv; ++trv) { 128 if (trv <= path) 132 if (stat(path, &sbuf)) 146 open(path, O_CREAT | O_EXCL | O_RDWR, 0600)) >= 0) 151 if (mkdir(path, 0700) >= 0) 155 } else if (lstat(path, &sbuf)) 73 GETTEMP( char *path, int *doopen, int domkdir ) argument
|
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/demo/user/ |
H A D | badopen.d | 30 self->path = copyinstr(arg0); 34 /self->path != NULL && arg1 == -1/ 36 printf("open for '%s' failed", self->path);
|
/vbox/src/VBox/Runtime/common/path/ |
H A D | RTPathStartsWithRoot.cpp | 32 #include <iprt/path.h> 34 #include "internal/path.h"
|
H A D | RTPathHasExt.cpp | 32 #include <iprt/path.h>
|
H A D | RTPathStripExt.cpp | 32 #include <iprt/path.h>
|
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/PosixLib/Gen/ |
H A D | dirname.c | 54 dirname(char *path) 62 * If `path' is a null pointer or points to an empty string, 65 if ((path == NULL) || (*path == '\0')) 69 lastp = path + strlen(path) - 1; 70 while (lastp != path && isDirSep(*lastp)) 73 /* Terminate path at the last occurence of '/'. */ 77 while (lastp != path && isDirSep(*lastp)) 84 len = (lastp - path) [all...] |
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/PyEfiCompressor/ |
H A D | setup.py | 32 os.path.join(BaseToolsDir, 'Source', 'C', 'Common', 'Decompress.c'), 36 os.path.join(BaseToolsDir, 'Source', 'C', 'Include'), 37 os.path.join(BaseToolsDir, 'Source', 'C', 'Include', 'Ia32'), 38 os.path.join(BaseToolsDir, 'Source', 'C', 'Common')
|
/vbox/src/VBox/Devices/PC/ipxe/src/net/infiniband/ |
H A D | ib_pathrec.c | 32 * Infiniband path lookups 37 * Handle path transaction completion 51 struct ib_path *path = ib_madx_get_ownerdata ( madx ); local 52 union ib_gid *dgid = &path->av.gid; 59 DBGC ( ibdev, "IBDEV %p path lookup for " IB_GID_FMT 66 path->av.lid = ntohs ( pathrec->dlid ); 67 path->av.sl = ( pathrec->reserved__sl & 0x0f ); 68 path->av.rate = ( pathrec->rate_selector__rate & 0x3f ); 69 DBGC ( ibdev, "IBDEV %p path to " IB_GID_FMT " is %04x sl %d rate " 70 "%d\n", ibdev, IB_GID_ARGS ( dgid ), path 98 struct ib_path *path; local 161 struct ib_path *path; member in struct:ib_cached_path 205 ib_cached_path_complete( struct ib_device *ibdev, struct ib_path *path, int rc, struct ib_address_vector *av __unused ) argument [all...] |
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/PyUtility/ |
H A D | setup.py | 35 os.path.join(BaseToolsDir, 'Source', 'C', 'Include'), 36 os.path.join(BaseToolsDir, 'Source', 'C', 'Include', 'Ia32'), 37 os.path.join(BaseToolsDir, 'Source', 'C', 'Common')
|
/vbox/src/VBox/ValidationKit/testmanager/cgi/ |
H A D | debuginfo.py | 37 # Only the main script needs to modify the path. 38 g_ksValidationKitDir = os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))); 39 sys.path.append(g_ksValidationKitDir);
|
/vbox/src/VBox/RDP/client-1.8.3/ |
H A D | printercache.c | 52 char *path; local 54 path = (char *) xmalloc(strlen(base) + sizeof("/.rdesktop/rdpdr/") + strlen(printer) + 1); 56 sprintf(path, "%s/.rdesktop", base); 57 if ((mkdir(path, 0700) == -1) && errno != EEXIST) 59 perror(path); 60 xfree(path); 64 strcat(path, "/rdpdr"); 65 if ((mkdir(path, 0700) == -1) && errno != EEXIST) 67 perror(path); 68 xfree(path); 88 char *path; local 166 char *home, *path; local 206 char *home, *path; local [all...] |
/vbox/src/VBox/Devices/PC/ipxe/src/include/ipxe/ |
H A D | ib_pathrec.h | 6 * Infiniband path records 17 /** Infiniband path operations */ 19 /** Handle path transaction completion 22 * @v path Path 27 struct ib_path *path, int rc, 31 /** An Infiniband path */ 46 * Set Infiniband path owner-private data 48 * @v path Path 52 ib_path_set_ownerdata ( struct ib_path *path, void *priv ) { argument 53 path [all...] |
/vbox/src/VBox/Additions/linux/sharedfolders/ |
H A D | lnkops.c | 29 char *path = (char*)get_zeroed_page(GFP_KERNEL); local 32 if (path) 35 rc = vboxReadLink(&client_handle, &sf_g->map, sf_i->path, PATH_MAX, path); 39 free_page((unsigned long)path); 43 nd_set_link(nd, error ? ERR_PTR(error) : path);
|
/vbox/src/libs/xpcom18a4/xpcom/io/ |
H A D | SpecialSystemDirectory.cpp | 158 TCHAR path[MAX_PATH]; local 159 HRESULT result = gGetSpecialPathProc(NULL, path, folder, true); 165 int len = strlen(path); 166 if (len>1 && path[len-1] != '\\') 168 path[len] = '\\'; 169 path[len + 1] = '\0'; 172 return NS_NewNativeLocalFile(nsDependentCString(path), 241 char path[_MAX_PATH]; local 242 PRInt32 len = GetWindowsDirectory( path, _MAX_PATH ); 245 if ( path[ 279 char path[_MAX_PATH]; local 408 char path[_MAX_PATH]; local 424 char path[_MAX_PATH]; local 441 char path[_MAX_PATH]; local 615 char path[MAXPATHLEN]; local 630 char path[MAXPATHLEN]; local 646 char path[MAXPATHLEN]; local 662 char path[MAXPATHLEN]; local [all...] |
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Tests/ |
H A D | TestTools.py | 20 import os.path namespace 28 TestsDir = os.path.realpath(os.path.split(sys.argv[0])[0]) 29 BaseToolsDir = os.path.realpath(os.path.join(TestsDir, '..')) 30 CSourceDir = os.path.join(BaseToolsDir, 'Source', 'C') 31 PythonSourceDir = os.path.join(BaseToolsDir, 'Source', 'Python') 32 TestTempDir = os.path.join(TestsDir, 'TestTempDir') 46 return [ os.path.join(BaseToolsDir, 'Bin', sys.platform.title()) ] 52 os.path [all...] |
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.16.0/ |
H A D | systemd-logind.h | 32 int systemd_logind_take_fd(int major, int minor, const char *path, Bool *paus); 39 #define systemd_logind_take_fd(major, minor, path, paus) -1
|
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.17.1/ |
H A D | systemd-logind.h | 32 int systemd_logind_take_fd(int major, int minor, const char *path, Bool *paus); 39 #define systemd_logind_take_fd(major, minor, path, paus) -1
|
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/test/tst/common/dtraceUtil/ |
H A D | tst.BufsizeGiga.d.ksh | 37 echo expected one argument: '<'dtrace-path'>'
|