Searched refs:path (Results 1 - 25 of 1067) sorted by relevance

1234567891011>>

/vbox/src/VBox/Devices/EFI/Firmware/StdLib/Include/
H A Dlibgen.h14 char *dirname(char *path);
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/test/tst/common/funcs/
H A Dtst.cleanpath.d33 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 Dlibgen.h6 extern char * basename ( char *path );
7 extern char * dirname ( char *path );
/vbox/src/VBox/Devices/PC/ipxe/src/core/
H A Dbasename.c24 * 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 Dmktemp.c54 _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 Dmkdtemp.c61 mkdtemp(path)
62 char *path;
64 _DIAGASSERT(path != NULL);
66 return (GETTEMP(path, (int *)NULL, 1) ? path : (char *)NULL);
H A Dmkstemp.c67 mkstemp(char *path)
71 _DIAGASSERT(path != NULL);
73 return (GETTEMP(path, &fd, 0) ? fd : -1);
H A Dgettemp.c74 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 Dbadopen.d30 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 DRTPathStartsWithRoot.cpp32 #include <iprt/path.h>
34 #include "internal/path.h"
H A DRTPathHasExt.cpp32 #include <iprt/path.h>
H A DRTPathStripExt.cpp32 #include <iprt/path.h>
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/PosixLib/Gen/
H A Ddirname.c54 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 Dsetup.py32 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 Dib_pathrec.c32 * 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 Dsetup.py35 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 Ddebuginfo.py37 # 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 Dprintercache.c52 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 Dib_pathrec.h6 * 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 Dlnkops.c29 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 DSpecialSystemDirectory.cpp158 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 DTestTools.py20 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 Dsystemd-logind.h32 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 Dsystemd-logind.h32 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 Dtst.BufsizeGiga.d.ksh37 echo expected one argument: '<'dtrace-path'>'

Completed in 101 milliseconds

1234567891011>>