/illumos-gate/usr/src/boot/i386/loader/ |
H A D | conf.c | 75 extern struct file_format i386_elf; 76 extern struct file_format i386_elf_obj; 77 extern struct file_format amd64_elf; 78 extern struct file_format amd64_elf_obj; 79 extern struct file_format multiboot; 80 extern struct file_format multiboot_obj; 81 extern struct file_format multiboot2; 82 extern struct file_format linux; 83 extern struct file_format linux_initrd; 85 struct file_format *file_formats[] = {
|
/illumos-gate/usr/src/boot/efi/loader/arch/i386/ |
H A D | elf32_freebsd.c | 48 struct file_format i386_elf = { elf32_loadfile, elf32_exec }; 49 struct file_format i386_elf_obj = { elf32_obj_loadfile, elf32_obj_exec }; 51 struct file_format *file_formats[] = {
|
H A D | exec.c | 20 extern struct file_format multiboot2; 22 struct file_format *file_formats[] = {
|
/illumos-gate/usr/src/boot/efi/loader/arch/amd64/ |
H A D | exec.c | 20 extern struct file_format multiboot2; 22 struct file_format *file_formats[] = {
|
H A D | elf64_freebsd.c | 60 static struct file_format amd64_elf = { elf64_loadfile, elf64_exec }; 61 static struct file_format amd64_elf_obj = { elf64_obj_loadfile, elf64_obj_exec }; 63 struct file_format *file_formats[] = {
|
/illumos-gate/usr/src/lib/libsqlite/src/ |
H A D | main.c | 277 db->file_format = meta[2]; in sqliteInitOne() 294 if( db->file_format==0 ){ in sqliteInitOne() 296 db->file_format = 4; in sqliteInitOne() 297 }else if( db->file_format>4 ){ in sqliteInitOne() 302 }else if( iDb!=1 && (db->file_format!=meta[2] || db->file_format<4) ){ in sqliteInitOne() 303 assert( db->file_format>=4 ); in sqliteInitOne() 337 if( db->file_format>=2 ){ in sqliteInitOne() 416 if( rc==SQLITE_OK && db->file_format<3 ){ in sqliteInit() 424 db->file_format = 3; in sqliteInit() 718 if( db->file_format<3 ){ in sqlite_compile()
|
H A D | attach.c | 37 if( db->file_format<4 ){ in sqliteAttach()
|
H A D | delete.c | 390 if( db->file_format>=4 ) sqliteAddIdxKeyType(v, pIdx); in sqliteGenerateRowIndexDelete()
|
H A D | build.c | 537 sqliteVdbeAddOp(v, OP_Integer, db->file_format, 0); in sqliteStartTable() 629 if( pParse->db->file_format>=4 ){ in sqliteAddColumnType() 706 if( pParse->db->file_format>=1 && in sqliteAddPrimaryKey() 1728 if( db->file_format>=4 ) sqliteAddIdxKeyType(v, pIndex); in sqliteCreateIndex()
|
H A D | expr.c | 1080 if( pParse->db->file_format>=4 && sqliteExprType(pExpr)==SQLITE_SO_TEXT ){ in sqliteExprCode() 1343 if( pParse->db->file_format>=4 && sqliteExprType(pExpr)==SQLITE_SO_TEXT ){ in sqliteExprIfTrue() 1436 if( pParse->db->file_format>=4 && sqliteExprType(pExpr)==SQLITE_SO_TEXT ){ in sqliteExprIfFalse()
|
H A D | pragma.c | 670 if( db->file_format>=4 ) sqliteAddIdxKeyType(v, pIdx); in sqlitePragma()
|
H A D | sqliteInt.h | 349 u8 file_format; /* What file format version is this database? */ member
|
H A D | select.c | 326 }else if( pParse->db->file_format>=4 ){ in pushOntoSorter() 449 if( pParse->db->file_format>=4 ) sqliteAddKeyType(v, pEList); in selectInnerLoop() 2351 if( pParse->db->file_format>=4 ) sqliteAddKeyType(v, pGroupBy); in sqliteSelect()
|
H A D | insert.c | 776 if( pParse->db->file_format>=4 ) sqliteAddIdxKeyType(v, pIdx); in sqliteGenerateConstraintChecks()
|
/illumos-gate/usr/src/boot/i386/libi386/ |
H A D | elf32_freebsd.c | 44 struct file_format i386_elf = { elf32_loadfile, elf32_exec }; 45 struct file_format i386_elf_obj = { elf32_obj_loadfile, elf32_obj_exec };
|
H A D | elf64_freebsd.c | 45 struct file_format amd64_elf = { elf64_loadfile, elf64_exec }; 46 struct file_format amd64_elf_obj = { elf64_obj_loadfile, elf64_obj_exec };
|
H A D | linux.c | 39 struct file_format linux = { linux_loadkernel, linux_exec }; 40 struct file_format linux_initrd = { linux_loadinitrd, linux_execinitrd };
|
H A D | multiboot.c | 78 struct file_format multiboot = { multiboot_loadfile, multiboot_exec }; 79 struct file_format multiboot_obj =
|
/illumos-gate/usr/src/boot/efi/loader/arch/arm/ |
H A D | exec.c | 94 static struct file_format arm_elf = { 99 struct file_format *file_formats[] = {
|
/illumos-gate/usr/src/boot/efi/loader/arch/arm64/ |
H A D | exec.c | 59 static struct file_format arm64_elf = { 64 struct file_format *file_formats[] = {
|
/illumos-gate/usr/src/lib/libsqlite/test/ |
H A D | version.test | 48 # Increase the file_format number by one. Verify that the 60 # Decrease the file_format number by one. Verify that the 74 # Set the file_format number to 2. This should cause the automatic
|
/illumos-gate/usr/src/boot/common/ |
H A D | bootstrap.h | 251 struct file_format struct 265 extern struct file_format *file_formats[]; /* supplied by consumer */ argument
|
H A D | multiboot2.c | 74 struct file_format multiboot2 = { multiboot2_loadfile, multiboot2_exec };
|