/dflybsd-src/lib/libkvm/ |
H A D | kvm.c | 86 _kvm_err(kvm_t *kd, const char *program, const char *fmt, ...) in _kvm_err() argument 91 if (program != NULL) { in _kvm_err() 92 (void)fprintf(stderr, "%s: ", program); in _kvm_err() 103 _kvm_syserr(kvm_t *kd, const char *program, const char *fmt, ...) in _kvm_syserr() argument 109 if (program != NULL) { in _kvm_syserr() 110 (void)fprintf(stderr, "%s: ", program); in _kvm_syserr() 130 _kvm_err(kd, kd->program, "can't allocate %zd bytes: %s", in _kvm_malloc() 169 _kvm_err(kd, kd->program, "exec file name too long"); in _kvm_open() 173 _kvm_err(kd, kd->program, "bad flags arg"); in _kvm_open() 180 _kvm_syserr(kd, kd->program, "%s", mf); in _kvm_open() [all …]
|
H A D | kvm_x86_64.c | 99 _kvm_err(kd, kd->program, "cannot mmap corefile"); in _kvm_maphdrs() 168 _kvm_err(kd, kd->program, "cannot allocate vm"); in _kvm_initvtop() 194 _kvm_err(kd, kd->program, "bad namelist - no kernbase"); in _kvm_initvtop() 203 _kvm_err(kd, kd->program, "bad namelist - no dumppcb"); in _kvm_initvtop() 208 _kvm_err(kd, kd->program, "cannot read dumppcb"); in _kvm_initvtop() 215 _kvm_err(kd, kd->program, "cannot read dumppcb"); in _kvm_initvtop() 252 _kvm_err(kd, kd->program, in _kvm_vatop() 262 _kvm_err(kd, kd->program, "_kvm_vatop: pml4e not valid"); in _kvm_vatop() 272 _kvm_err(kd, kd->program, "_kvm_vatop: pdpe_pa not found"); in _kvm_vatop() 276 _kvm_syserr(kd, kd->program, "_kvm_vatop: lseek pdpe_pa"); in _kvm_vatop() [all …]
|
H A D | kvm_minidump_x86_64.c | 155 _kvm_err(kd, kd->program, "cannot allocate vm"); in _kvm_minidump_initvtop() 163 _kvm_err(kd, kd->program, "cannot read dump header"); in _kvm_minidump_initvtop() 174 _kvm_err(kd, kd->program, "not a minidump for this platform"); in _kvm_minidump_initvtop() 192 _kvm_err(kd, kd->program, in _kvm_minidump_init_hdr1() 199 _kvm_err(kd, kd->program, in _kvm_minidump_init_hdr1() 208 _kvm_err(kd, kd->program, in _kvm_minidump_init_hdr1() 215 _kvm_err(kd, kd->program, in _kvm_minidump_init_hdr1() 246 _kvm_err(kd, kd->program, in _kvm_minidump_init_hdr2() 253 _kvm_err(kd, kd->program, in _kvm_minidump_init_hdr2() 262 _kvm_err(kd, kd->program, in _kvm_minidump_init_hdr2() [all …]
|
H A D | kvm_proc.c | 127 _kvm_err(kd, kd->program, "can't read lwp at %p", in kvm_lwptraverse() 167 _kvm_err(kd, kd->program, "can't read lwp at %p", in kvm_nextlwp() 223 _kvm_err(kd, kd->program, "can't read proc at %p", p); in kvm_proclist() 227 _kvm_err(kd, kd->program, "can't read ucred at %p", in kvm_proclist() 252 _kvm_err(kd, kd->program, "can't read pgrp at %p", in kvm_proclist() 259 _kvm_err(kd, kd->program, "can't read pproc at %p", in kvm_proclist() 268 _kvm_err(kd, kd->program, in kvm_proclist() 277 _kvm_err(kd, kd->program, "can't read session at %p", in kvm_proclist() 285 _kvm_err(kd, kd->program, in kvm_proclist() 298 _kvm_err(kd, kd->program, in kvm_proclist() [all …]
|
H A D | kvm_file.c | 100 _kvm_err(kd, kd->program, "alloc fd_files failed"); in kvm_deadfiles() 112 _kvm_err(kd, kd->program, "can't read fdp"); in kvm_deadfiles() 127 _kvm_err(kd, kd->program, in kvm_deadfiles() 136 _kvm_err(kd, kd->program, "can't read fd_files"); in kvm_deadfiles() 146 _kvm_err(kd, kd->program, "can't read file"); in kvm_deadfiles() 190 _kvm_syserr(kd, kd->program, "sysctl KERN_FILE failed"); in kvm_getfiles() 202 _kvm_syserr(kd, kd->program, "sysctl KERN_FILE failed"); in kvm_getfiles() 220 _kvm_syserr(kd, kd->program, in kvm_getfiles() 232 _kvm_err(kd, kd->program, "%s: no such symbol", in kvm_getfiles() 238 _kvm_err(kd, kd->program, "can't read nfiles"); in kvm_getfiles()
|
H A D | kvm_private.h | 49 const char *program; member 95 void _kvm_err (kvm_t *kd, const char *program, const char *fmt, ...) 103 void _kvm_syserr (kvm_t *kd, const char *program, const char *fmt, ...)
|
/dflybsd-src/bin/mined/ |
H A D | mined2.c | 1201 static REGEX program; /* Program of expression */ in get_expression() local 1214 compile(exp_buf, &program); /* Compile new expression */ in get_expression() 1217 if (program.status == REG_ERROR) { /* Error during compiling */ in get_expression() 1218 error(program.result.err_mess, NIL_PTR); in get_expression() 1221 return &program; in get_expression() 1257 REGEX *program; /* Program resulting from compilation */ in change() local 1266 if ((program = get_expression(mess_buf)) == NIL_REG) in change() 1278 if (line_check(program, line->text, FORWARD)) { in change() 1283 if ((textp = substitute(line, program,replacement)) in change() 1286 } while ((program->status & BEGIN_LINE) != BEGIN_LINE && in change() [all …]
|
H A D | mined.h | 392 char *substitute(LINE *line, REGEX *program, char *replacement); 395 void finished(REGEX *program, int *last_exp); 396 void compile(char *pattern, REGEX *program); 397 LINE *match(REGEX *program, char *string, FLAG method); 398 int line_check(REGEX *program, char *string, FLAG method); 399 int check_string(REGEX *program, char *string, int *expression); 400 int star(REGEX *program, char *end_position, char *string,
|
/dflybsd-src/contrib/file/magic/Magdir/ |
H A D | lisp | 13 #>2 search/4096 !\r Lisp/Scheme program text 16 0 search/4096 (setq\ Lisp/Scheme program text 18 0 search/4096 (defvar\ Lisp/Scheme program text 20 0 search/4096 (defparam\ Lisp/Scheme program text 22 0 search/4096 (defun\ Lisp/Scheme program text 24 0 search/4096 (autoload\ Lisp/Scheme program text 26 0 search/4096 (custom-set-variables\ Lisp/Scheme program text 67 0 string (SYSTEM::VERSION\040' CLISP byte-compiled Lisp program (pre 2004-03-27) 68 0 string (|SYSTEM|::|VERSION|\040' CLISP byte-compiled Lisp program text
|
H A D | ti-8x | 12 # program/group magic numbers in here because I cannot find any. 24 >0x00003B byte 0x05 (program) 25 >0x00003B byte 0x06 (assembly program) 41 >0x00003B byte 0x05 (program) 59 >0x00003B byte 0x05 (program) 77 >0x00003B byte 0x05 (program) 78 >0x00003B byte 0x06 (assembly program) 110 >0x00003B byte 0x12 (program) 143 >0x00003B byte 0x12 (program) 166 >0x000048 byte 0x12 (program) [all …]
|
H A D | lex | 7 0 search/100 yyprevious C program text (from lex) 9 # C program text from GNU flex, from Daniel Quinlan <quinlan@yggdrasil.com> 10 0 search/100 generated\ by\ flex C program text (from flex)
|
/dflybsd-src/lib/libc/rpc/ |
H A D | pmap_clnt.c | 60 pmap_set(u_long program, u_long version, int protocol, u_short port) in pmap_set() argument 81 rslt = rpcb_set((rpcprog_t)program, (rpcvers_t)version, nconf, na); in pmap_set() 92 pmap_unset(u_long program, u_long version) in pmap_unset() argument 100 udp_rslt = rpcb_unset((rpcprog_t)program, (rpcvers_t)version, in pmap_unset() 106 tcp_rslt = rpcb_unset((rpcprog_t)program, (rpcvers_t)version, in pmap_unset()
|
/dflybsd-src/usr.bin/at/ |
H A D | at.c | 741 int program = AT; /* our default program */ in main() local 764 program = ATQ; in main() 768 program = ATRM; in main() 772 program = BATCH; in main() 809 if (program != AT) in main() 812 program = ATRM; in main() 817 if (program != AT) in main() 823 if (program != AT) in main() 826 program = ATQ; in main() 831 if (program != AT) in main() [all …]
|
/dflybsd-src/lib/libipfw3/layer4/ |
H A D | ipfw3_layer4.c | 131 struct bpf_program program; in parse_bpf() local 144 if (pcap_compile_nopcap(65535, DLT_RAW, &program, **av, 1, in parse_bpf() 147 bpf->bf_len = program.bf_len; in parse_bpf() 149 memcpy(&bpf->bf_insn, program.bf_insns, in parse_bpf() 150 sizeof(struct bpf_insn) * program.bf_len); in parse_bpf() 155 pcap_freecode(&program); in parse_bpf()
|
/dflybsd-src/contrib/libarchive/tar/ |
H A D | creation_set.c | 42 int program; /* Set 1 if filter is a program name */ member 133 _cset_add_filter(struct creation_set *cset, int program, const char *filter) in _cset_add_filter() argument 146 cset->filters[cset->filter_count].program = program; in _cset_add_filter() 169 if (cset->filters[i].program) { in cset_read_support_filter_program() 185 if (cset->filters[i].program) in cset_write_add_filters()
|
/dflybsd-src/tools/test/ |
H A D | README | 3 A test program is one that will exercise a particular bit of the system 6 Please make a subdir per program, and add a brief description to this file. 8 malloc A program to test and benchmark malloc().
|
/dflybsd-src/contrib/cvs-1.12/ |
H A D | COPYING | 19 software and to any other program whose authors commit to using it. 34 For example, if you distribute copies of a such a program, whether 56 0. This License Agreement applies to any program or other work which 59 "Program", below, refers to any such program or work, and a "work based 87 c) If the modified program normally reads commands interactively when 92 warranty) and that users may redistribute the program under these 121 received the program in object code or executable form alone.) 197 If you develop a new program, and you want it to be of the greatest 202 To do so, attach the following notices to the program. It is safest to 207 <one line to give the program's name and a brief idea of what it does.> [all …]
|
/dflybsd-src/contrib/binutils-2.27/gprof/ |
H A D | gprof.texi | 16 * gprof: (gprof). Profiling your program's execution 51 can use it to determine which parts of a program are taking most of the 74 can use it to determine which parts of a program are taking most of the 91 * Compiling:: How to compile your program for profiling. 92 * Executing:: Executing your program to generate profile data 175 The profiled program must call @code{exit}(2) 206 Profiling allows you to learn where your program spent its time and which 208 information can show you which pieces of your program are slower than you 209 expected, and might be candidates for rewriting to make your program 215 of your program, it can be used on programs that are too large or too [all …]
|
/dflybsd-src/contrib/binutils-2.27/ld/emultempl/ |
H A D | elf-generic.em | 6 # This program is free software; you can redistribute it and/or modify 11 # This program is distributed in the hope that it will be useful, 17 # along with this program; if not, write to the Free Software 44 previous linker generated program headers. */
|
/dflybsd-src/contrib/binutils-2.27/ |
H A D | COPYING | 16 Foundation's software and to any other program whose authors commit to 33 For example, if you distribute copies of such a program, whether 50 Finally, any free program is threatened constantly by software 52 program will individually obtain patent licenses, in effect making the 53 program proprietary. To prevent this, we have made it clear that any 62 0. This License applies to any program or other work which contains 65 refers to any such program or work, and a "work based on the Program" 103 c) If the modified program normally reads commands interactively 108 a warranty) and that users may redistribute the program under 152 received the program in object code or executable form with such [all …]
|
/dflybsd-src/contrib/binutils-2.27/include/ |
H A D | COPYING | 16 Foundation's software and to any other program whose authors commit to 33 For example, if you distribute copies of such a program, whether 50 Finally, any free program is threatened constantly by software 52 program will individually obtain patent licenses, in effect making the 53 program proprietary. To prevent this, we have made it clear that any 62 0. This License applies to any program or other work which contains 65 refers to any such program or work, and a "work based on the Program" 103 c) If the modified program normally reads commands interactively 108 a warranty) and that users may redistribute the program under 152 received the program in object code or executable form with such [all …]
|
/dflybsd-src/gnu/ |
H A D | COPYING | 16 Foundation's software and to any other program whose authors commit to 33 For example, if you distribute copies of such a program, whether 50 Finally, any free program is threatened constantly by software 52 program will individually obtain patent licenses, in effect making the 53 program proprietary. To prevent this, we have made it clear that any 62 0. This License applies to any program or other work which contains 65 refers to any such program or work, and a "work based on the Program" 103 c) If the modified program normally reads commands interactively 108 a warranty) and that users may redistribute the program under 152 received the program in object code or executable form with such [all …]
|
/dflybsd-src/contrib/binutils-2.34/ |
H A D | COPYING | 16 Foundation's software and to any other program whose authors commit to 33 For example, if you distribute copies of such a program, whether 50 Finally, any free program is threatened constantly by software 52 program will individually obtain patent licenses, in effect making the 53 program proprietary. To prevent this, we have made it clear that any 62 0. This License applies to any program or other work which contains 65 refers to any such program or work, and a "work based on the Program" 103 c) If the modified program normally reads commands interactively 108 a warranty) and that users may redistribute the program under 152 received the program in object code or executable form with such [all …]
|
/dflybsd-src/contrib/zstd/ |
H A D | COPYING | 16 Foundation's software and to any other program whose authors commit to 33 For example, if you distribute copies of such a program, whether 50 Finally, any free program is threatened constantly by software 52 program will individually obtain patent licenses, in effect making the 53 program proprietary. To prevent this, we have made it clear that any 62 0. This License applies to any program or other work which contains 65 refers to any such program or work, and a "work based on the Program" 103 c) If the modified program normally reads commands interactively 108 a warranty) and that users may redistribute the program under 152 received the program in object code or executable form with such [all …]
|
/dflybsd-src/contrib/gcc-4.7/ |
H A D | COPYING | 16 Foundation's software and to any other program whose authors commit to 33 For example, if you distribute copies of such a program, whether 50 Finally, any free program is threatened constantly by software 52 program will individually obtain patent licenses, in effect making the 53 program proprietary. To prevent this, we have made it clear that any 62 0. This License applies to any program or other work which contains 65 refers to any such program or work, and a "work based on the Program" 103 c) If the modified program normally reads commands interactively 108 a warranty) and that users may redistribute the program under 152 received the program in object code or executable form with such [all …]
|