Searched refs:filename (Results 1 - 25 of 262) sorted by relevance

1234567891011

/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.16.0/
H A Ddmxcompat.h43 extern DMXConfigEntryPtr dmxVDLRead(const char *filename);
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.17.1/
H A Ddmxcompat.h43 extern DMXConfigEntryPtr dmxVDLRead(const char *filename);
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.3.0.0/
H A Ddmxcompat.h44 extern DMXConfigEntryPtr dmxVDLRead(const char *filename);
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.4.2/
H A Ddmxcompat.h43 extern DMXConfigEntryPtr dmxVDLRead(const char *filename);
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.5.3/
H A Ddmxcompat.h43 extern DMXConfigEntryPtr dmxVDLRead(const char *filename);
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.6.5/
H A Ddmxcompat.h43 extern DMXConfigEntryPtr dmxVDLRead(const char *filename);
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.7.7/
H A Ddmxcompat.h43 extern DMXConfigEntryPtr dmxVDLRead(const char *filename);
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.8.0/
H A Ddmxcompat.h43 extern DMXConfigEntryPtr dmxVDLRead(const char *filename);
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.9.0/
H A Ddmxcompat.h43 extern DMXConfigEntryPtr dmxVDLRead(const char *filename);
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.10.0/
H A Ddmxcompat.h43 extern DMXConfigEntryPtr dmxVDLRead(const char *filename);
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.11.0/
H A Ddmxcompat.h43 extern DMXConfigEntryPtr dmxVDLRead(const char *filename);
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.12.0/
H A Ddmxcompat.h43 extern DMXConfigEntryPtr dmxVDLRead(const char *filename);
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.13.0/
H A Ddmxcompat.h43 extern DMXConfigEntryPtr dmxVDLRead(const char *filename);
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.14.0/
H A Ddmxcompat.h43 extern DMXConfigEntryPtr dmxVDLRead(const char *filename);
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.15.0/
H A Ddmxcompat.h43 extern DMXConfigEntryPtr dmxVDLRead(const char *filename);
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.1.0/
H A Ddmxcompat.h44 extern DMXConfigEntryPtr dmxVDLRead(const char *filename);
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.0.1/
H A Ddmxcompat.h44 extern DMXConfigEntryPtr dmxVDLRead(const char *filename);
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Tests/
H A DCheckPythonSyntax.py29 def SingleFileTest(self, filename):
31 py_compile.compile(filename, doraise=True)
33 self.fail('syntax error: %s, Error is %s' % (filename, str(e)))
39 for filename in files:
40 if filename.lower().endswith('.py'):
42 os.path.join(root, filename)
46 def MakeTestName(filename):
47 assert filename.lower().endswith('.py')
48 name = filename[:-3]
53 def MakeNewTest(filename)
[all...]
/vbox/src/VBox/Devices/PC/ipxe/src/util/
H A Dpadimg.pl22 while ( my $filename = shift ) {
23 die "$filename is not a file\n" unless -f $filename;
24 my $oldsize = -s $filename;
30 $filename, $oldsize, $newsize, $padsize, $byte;
33 sysopen ( my $fh, $filename, ( O_WRONLY | O_APPEND ) )
34 or die "Could not open $filename for appending: $!\n";
36 or die "Could not append to $filename: $!\n";
39 truncate $filename, $newsize
40 or die "Could not resize $filename
[all...]
/vbox/src/libs/libxml2-2.6.31/doc/examples/
H A Dparse1.c18 * @filename: a filename or an URL
23 example1Func(const char *filename) { argument
26 doc = xmlReadFile(filename, NULL, 0);
28 fprintf(stderr, "Failed to parse %s\n", filename);
H A Dparse2.c19 * @filename: a filename or an URL
24 exampleFunc(const char *filename) { argument
35 doc = xmlCtxtReadFile(ctxt, filename, NULL, XML_PARSE_DTDVALID);
38 fprintf(stderr, "Failed to parse %s\n", filename);
42 fprintf(stderr, "Failed to validate %s\n", filename);
H A Dreader3.c22 * @filename: the file name to parse
29 extractFile(const char *filename, const xmlChar *pattern) { argument
37 reader = xmlReaderForFile(filename, NULL, 0);
44 filename, (const char *) pattern);
54 fprintf(stderr, "%s : failed to parse\n", filename);
67 fprintf(stderr, "Unable to open %s\n", filename);
74 const char *filename = "test3.xml"; local
79 filename = argv[1];
90 doc = extractFile(filename, (const xmlChar *) pattern);
/vbox/src/libs/xpcom18a4/nsprpub/pr/tests/
H A Dbigfile.c65 PR_fprintf(output, ">bigfile [-G] [-d] [-v[*v]] [-s <n>] <filename>\n");
70 PR_fprintf(output, "\t<filename>\tName of test file\t(none)\n");
74 static PRStatus DeleteIfFound(const char *filename) argument
78 rv = PR_Access(filename, PR_ACCESS_WRITE_OK);
82 rv = PR_Delete(filename);
91 static PRIntn Error(const char *msg, const char *filename) argument
99 (void)DeleteIfFound(filename);
111 static void PrintInfo(PRFileInfo64 *info, const char *filename) argument
118 __FILE__, __LINE__, filename);
142 const char *filename local
[all...]
/vbox/src/libs/xpcom18a4/xpcom/typelib/xpidl/macplugin/
H A Dmac_xpidl.h19 size_t mac_get_file_length(const char* filename);
/vbox/src/VBox/Additions/common/crOpenGL/
H A Dstub_common.py70 def LoadAnnotations(filename):
73 f = open(filename, "r")
75 annotations[filename] = {}
88 annotations[filename] = table
91 def GetAnnotations( filename, key ):
94 table = annotations[filename]
96 table = LoadAnnotations(filename)
107 def FindAnnotation( filename, key, subkey ):
110 table = annotations[filename]
112 table = LoadAnnotations(filename)
[all...]

Completed in 122 milliseconds

1234567891011