/vbox/src/VBox/Devices/PC/ipxe/src/core/ |
H A D | lineconsole.c | 33 * Print a character to a line-based console 36 * @ret print Print line 38 size_t line_putchar ( struct line_console *line, int character ) { argument 41 character = ansiesc_process ( &line->ctx, character ); 54 line->buffer[line->index++] = character; 56 /* Do nothing more unless we reach end-of-line (or end-of-buffer) */ 58 ( line->index < ( line->len - 1 /* NUL */ ) ) ) { 63 line [all...] |
/vbox/src/VBox/Additions/x11/Installer/ |
H A D | x11config.pl | 38 while (defined ($line = <CFG>)) 40 if ($line =~ /^\s*Section\s*"([a-zA-Z]+)"/i) 52 if ($line =~ /^\s*EndSection/i) 61 if ($line =~ /^\s*driver\s+\"(?:mouse|vboxmouse)\"/i) 63 $line = " Driver \"vboxmouse\"\n Option \"CorePointer\"\n"; 68 if ($line =~ /^\s*option\s+\"(?:alwayscore|sendcoreevents|corepointer)\"/i) 70 $line = ""; 76 if ($line =~ /^\s*option\s+\"(?:device)\"\s+\"(?:\/dev\/mouse)\"/i) 78 $line = " Option \"Device\" \"\/dev\/kdmouse\"\n" 82 if ($line [all...] |
H A D | x11config15sol.pl | 31 my $line; 34 # Command line options 52 while (defined ($line = <CFG>)) 54 if ($line =~ /^\s*Section\s*"([a-zA-Z]+)"/i) 64 if ($line =~ /^\s*EndSection/i) 72 if ($line =~ /^\s*driver\s+\"(?:fbdev|vga|vesa|vboxvideo|ChangeMe)\"/i) 74 $line = " Driver \"$driver_name\"\n"; 77 print TMP $line;
|
H A D | x11config15suse.pl | 71 # Go through the configuration file line by line 72 while (defined ($line = <CFG>)) { 74 if ($line =~ /^\s*Section\s*"([a-zA-Z]+)"/i) { 87 if ($line =~ /^\s*EndSection/i && $in_layout) { 91 if ($line =~ /^\s*EndSection/i) { 100 if ($line =~ /^\s*driver\s+\"(fbdev|vga|vesa|vboxvideo|ChangeMe)\"/i) { 101 $line =~ s/(fbdev|vga|vesa|vboxvideo|ChangeMe)/$videodrv/i; 106 if ($line =~ /^\s*driver\s+\"(?:vboxmouse)\"/i) 113 if ( $line [all...] |
H A D | x11config15.pl | 53 while (defined ($line = <CFG>)) { 54 if ($line =~ /^\s*Section\s*"([a-zA-Z]+)"/i) { 60 if ($line =~ /^\s*EndSection/i) { 66 if ($line =~ /^\s*driver\s+\"(fbdev|vga|vesa|vboxvideo|ChangeMe)\"/i) { 67 $line =~ s/(fbdev|vga|vesa|vboxvideo|ChangeMe)/vboxvideo/i; 70 print TMP $line;
|
H A D | x11restore.pl | 37 foreach $line (@array) 39 if ($line =~ /$vboxpresent/)
|
/vbox/src/VBox/Additions/x11/x11include/mesa-7.2/src/mesa/swrast/ |
H A D | s_aalinetemp.h | 27 * Antialiased line template. 32 * Function to render each fragment in the AA line. 37 NAME(plot)(GLcontext *ctx, struct LineInfo *line, int ix, int iy) argument 43 const GLfloat coverage = compute_coveragei(line, ix, iy); 45 const GLfloat coverage = compute_coveragef(line, ix, iy); 47 const GLuint i = line->span.end; 54 line->span.end++; 55 line->span.array->coverage[i] = coverage; 56 line->span.array->x[i] = ix; 57 line 119 NAME(line)(GLcontext *ctx, const SWvertex *v0, const SWvertex *v1) function 127 struct LineInfo line; local [all...] |
/vbox/src/VBox/RDP/client-1.8.3/keymaps/ |
H A D | convert-map | 24 line = f.readline() 25 if not line: break 27 if line.startswith("#") or line.startswith("include"): 28 print line, 31 fields = line.split() 33 if line.startswith("map"): 50 raise("Invalid line: %s" % line)
|
/vbox/src/VBox/GuestHost/OpenGL/packer/ |
H A D | pack_swap.py | 20 for line in file.readlines(): 21 line = line.rstrip() variable 22 if line.find( "crPackAlloc" ) != -1 or line.find( "crPackFree" ) != -1: 23 print line 25 elif line.find( "crPack" ) != -1: 26 fun_index = line.find( "crPack" ) 27 paren_index = line.find( "(", fun_index ) 28 space_index = line [all...] |
H A D | packer.h | 22 extern void __PackError( int line, const char *file, GLenum error, const char *info ); 24 # define __PackError( line, file, error, info) do { AssertReleaseFailed(); } while (0)
|
H A D | pack_error.c | 27 void __PackError( int line, const char *file, GLenum error, const char *info) argument 32 pc->Error( line, file, error, info ); 68 crWarning( "GL error in packer: %s, line %d: %s: %s", 69 file, line, glerr, info );
|
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/Main/ |
H A D | assert.c | 34 @param[in] line The line number the assert is located on. 45 IN int line, 50 printf("Assertion failed: (%s), file %s, line %d.\n", 51 failedexpr, file, line); 53 printf("Assertion failed: (%s), file %s, function %s, line %d.\n", 54 failedexpr, file, func, line); 42 __assert( IN const char *file, IN const char *func, IN int line, IN const char *failedexpr ) argument
|
/vbox/src/VBox/RDP/client-1.8.3/ |
H A D | lspci.c | 51 /* Handle one line of output from the lspci subprocess */ 53 handle_child_line(const char *line, void *data) argument 58 if (str_startswith(line, "Class:")) 60 val = line + sizeof("Class:"); 65 else if (str_startswith(line, "Vendor:")) 67 val = line + sizeof("Vendor:"); 70 else if (str_startswith(line, "Device:")) 72 val = line + sizeof("Device:"); 78 else if (str_startswith(line, "SVendor:")) 80 val = line 118 lspci_process_line(const char *line, void *data) argument [all...] |
H A D | bitmap.c | 79 uint8 *prevline = NULL, *line = NULL; local 177 prevline = line; 178 line = output + height * width; 186 line[x] = mix; 188 line[x] = prevline[x] ^ mix; 195 REPEAT(line[x] = 0) 199 REPEAT(line[x] = prevline[x]) 205 REPEAT(line[x] = mix) 209 REPEAT(line[x] = prevline[x] ^ mix) 219 line[ 277 uint16 *prevline = NULL, *line = NULL; local 476 uint8 *prevline = NULL, *line = NULL; local [all...] |
/vbox/src/VBox/GuestHost/OpenGL/include/state/ |
H A D | cr_stateerror.h | 14 DECLEXPORT(void) crStateError( int line, const char *file, GLenum err, const char *format, ... );
|
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/GenPatchPcdTable/ |
H A D | GenPatchPcdTable.py | 66 for line in lines: 67 line = line.strip() 69 if status == 0 and line == "Linker script and memory map": 72 elif status == 1 and line == 'START GROUP': 78 m = re.match('^[\da-fA-FxhH]+ +__image_base__ += +([\da-fA-FhxH]+)', line) 82 m = re.match('^([\w_\.]+) +([\da-fA-Fx]+) +([\da-fA-Fx]+)', line) 86 m = re.match("^([\da-fA-Fx]+) +[_]+gPcd_BinaryPatch_([\w_\d]+)", line) 94 @param lines line array for map file 103 for line i [all...] |
/vbox/src/VBox/HostDrivers/linux/ |
H A D | do_dkms | 37 $DKMS status -m $m | while read line 40 if echo "$line" | grep -q added > /dev/null || 41 echo "$line" | grep -q built > /dev/null || 42 echo "$line" | grep -q installed > /dev/null; then 45 version=`echo "$line" | sed "s/$m,\([^,]*\)[,:].*/\1/;t;d"`
|
/vbox/src/libs/libxml2-2.6.31/doc/examples/ |
H A D | index.py | 68 for line in lines: 69 while line != "" and (line[0] == ' ' or line[0] == '\t'): 70 line = line[1:] 71 while line != "" and line[0] == '*': 72 line = line[ [all...] |
/vbox/src/VBox/Devices/PC/ipxe/src/tests/ |
H A D | linebuf_test.c | 10 "There should be exactly one blank line above\n" 11 "and this line should never appear at all since it has no terminator"; 18 char *line; local 30 if ( ( line = buffered_line ( &linebuf ) ) ) 31 printf ( "\"%s\"\n", line );
|
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/BsdSocketLib/ |
H A D | getservent.c | 56 static char line[BUFSIZ+1]; variable 68 _getservbyport_yp(line) 69 char *line; 107 snprintf(line, BUFSIZ, "%.*s\n", resultlen, result); 114 _getservbyname_yp(line) 115 char *line; 138 snprintf(line, BUFSIZ, "%.*s\n", resultlen, result); 145 _getservent_yp(line) 146 char *line; 180 snprintf(line, BUFSI [all...] |
/vbox/src/VBox/Devices/PC/ipxe/src/image/ |
H A D | script.c | 57 int ( * process_line ) ( const char *line ), 61 char *line; local 68 /* Find length of next line, excluding any terminating '\n' */ 75 /* Allocate buffer for line */ 76 line = zalloc ( len + 1 /* NUL */ ); 77 if ( ! line ) 80 /* Copy line */ 81 copy_from_user ( line, image->data, script_offset, len ); 82 DBG ( "$ %s\n", line ); 84 /* Move to next line */ [all...] |
/vbox/src/VBox/ExtPacks/VBoxDTrace/generated/ |
H A D | dt_lex.c | 0 #line 2 "dt_lex.c" 3 #line 4 "dt_lex.c" 232 /* Whether we're considered to be at the beginning of a line. 238 int yy_bs_lineno; /**< The line count. */ 956 #line 1 "dt_lex.l" 957 #line 2 "dt_lex.l" 1058 * S3 - D control line parsing (i.e. after ^# is seen but before \n) 1059 * S4 - D control line scan (locate control directives only and invoke S3) 1062 #line 1063 "dt_lex.c" 1252 #line 12 [all...] |
/vbox/src/VBox/Installer/common/ |
H A D | vboxapisetup.py | 34 for line in oldF: 35 line = line.replace("%VBOX_INSTALL_PATH%", install) 36 line = line.replace("%VBOX_SDK_PATH%", sdk) 37 newF.write(line)
|
/vbox/src/VBox/Devices/PC/ipxe/src/hci/ |
H A D | shell.c | 80 char *line; local 88 line = readline_history ( shell_prompt, &history ); 89 if ( line ) { 90 rc = system ( line ); 91 free ( line );
|
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/VfrCompile/Pccts/dlg/ |
H A D | support.c | 44 void internal_error(char *s, char *file,int line) /* MR9 23-Sep-97 */ argument 46 void internal_error(s,file,line) /* MR9 23-Sep-97 */ 48 int line; 51 fprintf(stderr,s,file,line); 56 char *dlg_malloc(int bytes,char *file,int line) argument 58 char *dlg_malloc(bytes,file,line) 61 int line; 70 file,line); 77 char *dlg_calloc(int n,int bytes,char *file,int line) argument 79 char *dlg_calloc(n,bytes,file,line) [all...] |