| /src/common/dist/zlib/contrib/iostream/ |
| test.cpp | 8 gzofstream os( 1, ios::out ); local in function:main 12 os << "Hello, Mommy" << endl; 14 os << setcompressionlevel( Z_NO_COMPRESSION ); 15 os << "hello, hello, hi, ho!" << endl; 17 setcompressionlevel( os, Z_DEFAULT_COMPRESSION ) 20 os.close();
|
| /src/usr.sbin/pf/etc/ |
| Makefile | 6 FILESMODE_pf.os= 444 12 CONFIGFILES+= pf.os
|
| /src/lib/libterminfo/ |
| curterm.c | 63 speed_t os; local in function:_ti_setospeed 70 os = cfgetospeed(&termios); 72 if (bauds[i] == os) {
|
| /src/common/dist/zlib/contrib/iostream2/ |
| zstream.h | 236 ostream& os() { function in class:ozstream 304 return zs.os() << x;
|
| /src/sys/dev/raidframe/ |
| rf_parityscan.c | 349 RF_SectorNum_t os = pda->startSector; local in function:rf_TryToRedirectPDA 356 oc, (long) os, pda->col, (long) pda->startSector); 363 oc, (long) os, pda->col, (long) pda->startSector);
|
| /src/sys/arch/arm/arm32/ |
| db_machdep.c | 326 tlb_print_common_header("IS --OS- SH"); 380 const u_int os = __SHIFTOUT(d2, ARM_A7_TLBDATA2_OS); local in function:tlb_print_cortex_a7_entry 384 static const char sh_types[4][3] = { "NS", "na", "OS", "IS" }; 385 db_printf(" %2s %5s %2s\n", is_types[is], os_types[os], sh_types[sh]);
|
| /src/sys/compat/linux32/common/ |
| linux32_signal.c | 286 struct sigaction os; local in function:linux32_sys_rt_sigaction 324 os.sa_handler = SIG_IGN; 325 sigemptyset(&os.sa_mask); 326 os.sa_flags = 0; 331 SCARG_P32(uap, osa) ? &os : NULL, 339 native_to_linux32_sigaction(&ols32, &os); 362 sigset_t ns, os; local in function:linux32_sys_rt_sigprocmask 394 SCARG_P32(uap, oset) ? &os : NULL); 401 native_to_linux32_sigset(&ols32, &os);
|
| /src/usr.bin/mkubootimage/ |
| mkubootimage.c | 112 enum uboot_image_os os; member in struct:uboot_os 128 return uboot_os[i].os; 135 get_os_name(enum uboot_image_os os) 140 if (uboot_os[i].os == os) 287 printf(" os: %d (%s)\n", hdr->ih_os, 475 case 'O': /* os */
|
| /src/bin/csh/ |
| lex.c | 198 char *os = *s; local in function:sprlex 201 if (os == NULL) { 204 os = *s; 205 } else if (*os != '\n') { 206 if (asprintf(s, "%s %s", os, w) < 0) { 207 free(os); 210 free(os); 211 os = *s;
|
| /src/dist/pf/sbin/pfctl/ |
| pfctl_parser.h | 37 #define PF_OSFP_FILE "/etc/pf.os" 127 char *os; member in struct:node_os
|
| parse.y | 354 struct node_os *os; 410 %token PASS BLOCK SCRUB RETURN IN OS OUT LOG QUICK ON FROM TO FLAGS 446 %type <v.os> os xos os_list 1736 "OS fingerprinting only " 1743 yyerror("OS fingerprinting requires " 2401 | from os to { 2408 os : /* empty */ { $$ = NULL; } label 2409 | OS xos { $$ = $2; } 2410 | OS '{' os_list '}' { $$ = $3; [all...] |
| /src/games/gomoku/ |
| pickmove.c | 122 spot_index os = PT(BSZ, BSZ); /* our spot */ local in function:pickmove 141 if (better(s, os, us)) /* pick our best move */ 142 os = s; 148 spot_index bs = us == BLACK ? os : ts; 149 spot_index ws = us == BLACK ? ts : os; 175 union comboval ocv = board[os].s_combo[us]; 187 return os;
|
| /src/usr.bin/midirecord/ |
| midirecord.c | 679 const char *s, *os; local in function:parse_ints 702 for (count = 0, s = os = str, u = 0; *s; s++) { 706 os = s + 1;
|
| /src/common/dist/zlib/ |
| zlib.h | 120 int os; /* operating system */ member in struct:gz_header_s 816 deflate(). The text, time, os, extra field, name, and comment information 827 the time set to zero, and os set to the current operating system, with no 1050 The text, time, xflags, and os fields are filled in with the gzip header
|
| /src/usr.sbin/edquota/ |
| edquota.c | 727 sigset_t s, os; local in function:editit 733 if (sigprocmask(SIG_BLOCK, &s, &os) == -1) 749 if (sigprocmask(SIG_SETMASK, &os, NULL) == -1) 764 if (sigprocmask(SIG_SETMASK, &os, NULL) == -1)
|
| /src/bin/sh/ |
| parser.c | 1304 struct tokenstate *os, *ts; local in function:bump_state_level 1306 os = currentstate(stack); 1321 ts->ts_quoted = os->ts_quoted & QF; /* these are default settings */ 1322 ts->ts_varnest = os->ts_varnest; 1323 ts->ts_arinest = os->ts_arinest; /* when appropriate */ 1324 ts->ts_syntax = os->ts_syntax; /* they will be altered */ 1325 ts->ts_magicq = os->ts_magicq;
|
| /src/sbin/sysctl/ |
| sysctl.c | 2717 char *s, *os; local in function:bitmask_print 2719 s = os = NULL; 2724 if (os) 2725 rv = asprintf(&s, "%s,%zu", os, i); 2730 free(os); 2731 os = s;
|
| /src/sys/dev/pci/igc/ |
| if_igc.c | 468 /* Setup OS specific network interface. */ 541 struct igc_osdep *os = &sc->osdep; local in function:igc_identify_hardware 542 struct pci_attach_args *pa = &os->os_pa; 557 struct igc_osdep *os = &sc->osdep; local in function:igc_allocate_pci_resources 558 struct pci_attach_args *pa = &os->os_pa; 570 if (pci_mapreg_map(pa, IGC_PCIREG, memtype, 0, &os->os_memt, 571 &os->os_memh, &os->os_membase, &os->os_memsize)) { 576 sc->hw.hw_addr = os->os_membase 741 struct igc_osdep *os = &sc->osdep; local in function:igc_free_pci_resources 1366 struct igc_osdep *os = &sc->osdep; local in function:igc_dma_malloc [all...] |
| /src/sys/dev/pci/ |
| ips.c | 366 u_int8_t os; member in struct:ips_pg5
|