Searched refs:program (Results 26 - 50 of 264) sorted by relevance

1234567891011

/freebsd-12-stable/contrib/gdb/gdb/gdbserver/
H A Dtarget.h9 This program is free software; you can redistribute it and/or modify
14 This program is distributed in the hope that it will be useful,
20 along with this program; if not, write to the Free Software
50 PROGRAM is a path to the program to execute.
57 int (*create_inferior) (char *program, char **args);
142 #define create_inferior(program, args) \
143 (*the_target->create_inferior) (program, args)
/freebsd-12-stable/lib/libkvm/
H A Dkvm_getloadavg.c72 _kvm_err(kd, kd->program,
79 _kvm_err(kd, kd->program,
87 _kvm_err(kd, kd->program, "can't read averunnable");
H A Dkvm_getswapinfo.c80 _kvm_err(kd, kd->program, "cannot read %s", msg); \
124 _kvm_err(kd, kd->program,
180 _kvm_err(kd, kd->program, "sysctlnametomib failed: %s",
191 _kvm_err(kd, kd->program, "cannot read sysctl: %s.",
196 _kvm_err(kd, kd->program, "struct xswdev has unexpected "
201 _kvm_err(kd, kd->program, "struct xswdev version "
240 _kvm_err(kd, kd->program, "unable to find swtailq");
245 _kvm_err(kd, kd->program, "unable to find dmmax");
261 _kvm_err(kd, kd->program, "cannot read sysctl %s:%s", name,
266 _kvm_err(kd, kd->program, "sysct
[all...]
H A Dkvm_arm.c117 _kvm_err(kd, kd->program, "raw dumps not supported on arm");
123 _kvm_err(kd, kd->program, "cannot allocate vm");
149 _kvm_err(kd, kd->program, "cannot resolve kernbase");
157 _kvm_err(kd, kd->program, "couldn't get phys addr");
164 _kvm_err(kd, kd->program, "bad namelist");
169 _kvm_err(kd, kd->program, "cannot read kernel_l1pa");
174 _kvm_err(kd, kd->program, "cannot allocate l1pt");
178 _kvm_err(kd, kd->program, "cannot read l1pt");
217 _kvm_syserr(kd, kd->program, "_arm_kvatop: pread");
H A Dkvm_private.c74 * Report an error using printf style arguments. "program" is kd->program
80 _kvm_err(kvm_t *kd, const char *program, const char *fmt, ...) argument
85 if (program != NULL) {
86 (void)fprintf(stderr, "%s: ", program);
97 _kvm_syserr(kvm_t *kd, const char *program, const char *fmt, ...) argument
103 if (program != NULL) {
104 (void)fprintf(stderr, "%s: ", program);
124 _kvm_err(kd, kd->program, "can't allocate %zu bytes: %s",
169 _kvm_err(kd, kd->program, "
[all...]
H A Dkvm_minidump_amd64.c130 _kvm_err(kd, kd->program, "cannot allocate vm");
136 _kvm_err(kd, kd->program, "cannot read dump header");
140 _kvm_err(kd, kd->program, "not a minidump for this platform");
150 _kvm_err(kd, kd->program, "wrong minidump version. expected %d got %d",
199 _kvm_err(kd, kd->program,
206 _kvm_err(kd, kd->program,
217 _kvm_err(kd, kd->program,
225 _kvm_err(kd, kd->program,
258 _kvm_err(kd, kd->program,
267 _kvm_err(kd, kd->program,
[all...]
H A Dkvm_minidump_aarch64.c89 _kvm_err(kd, kd->program, "cannot allocate vm");
95 _kvm_err(kd, kd->program, "cannot read dump header");
100 _kvm_err(kd, kd->program, "not a minidump for this platform");
106 _kvm_err(kd, kd->program, "wrong minidump version. "
156 _kvm_err(kd, kd->program, "_aarch64_minidump_vatop: "
169 _kvm_err(kd, kd->program,
176 _kvm_err(kd, kd->program, "_aarch64_minidump_vatop: "
184 _kvm_err(kd, kd->program,
H A Dkvm_minidump_arm.c93 _kvm_err(kd, kd->program, "cannot allocate vm");
101 _kvm_err(kd, kd->program, "cannot read dump header");
107 _kvm_err(kd, kd->program, "not a minidump for this platform");
112 _kvm_err(kd, kd->program, "wrong minidump version. "
168 _kvm_err(kd, kd->program,
180 _kvm_err(kd, kd->program,
191 _kvm_err(kd, kd->program, "_arm_minidump_kvatop: "
200 _kvm_err(kd, kd->program, "_arm_minidump_kvatop: virtual "
H A Dkvm_minidump_riscv.c90 _kvm_err(kd, kd->program, "cannot allocate vm");
96 _kvm_err(kd, kd->program, "cannot read dump header");
101 _kvm_err(kd, kd->program, "not a minidump for this platform");
107 _kvm_err(kd, kd->program, "wrong minidump version. "
157 _kvm_err(kd, kd->program, "_riscv_minidump_vatop: "
170 _kvm_err(kd, kd->program,
177 _kvm_err(kd, kd->program, "_riscv_minidump_vatop: "
185 _kvm_err(kd, kd->program,
H A Dkvm_minidump_i386.c98 _kvm_err(kd, kd->program, "cannot allocate vm");
104 _kvm_err(kd, kd->program, "cannot read dump header");
108 _kvm_err(kd, kd->program, "not a minidump for this platform");
113 _kvm_err(kd, kd->program, "wrong minidump version. expected %d got %d",
161 _kvm_err(kd, kd->program,
168 _kvm_err(kd, kd->program,
176 _kvm_err(kd, kd->program,
206 _kvm_err(kd, kd->program,
213 _kvm_err(kd, kd->program,
221 _kvm_err(kd, kd->program,
[all...]
H A Dkvm_proc.c147 _kvm_err(kd, kd->program, "can't read proc at %p", p);
168 _kvm_err(kd, kd->program,
210 _kvm_err(kd, kd->program, "nprocs corrupt");
227 _kvm_err(kd, kd->program,
237 _kvm_err(kd, kd->program,
260 _kvm_err(kd, kd->program,
270 _kvm_err(kd, kd->program, "can't read pgrp at %p",
277 _kvm_err(kd, kd->program, "can't read session at %p",
286 _kvm_err(kd, kd->program,
292 _kvm_err(kd, kd->program,
[all...]
/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
H A DPdbFPOProgramToDWARFExpression.cpp54 static Node *ResolveFPOProgram(llvm::StringRef program, argument
59 postfix::ParseFPOProgram(program, alloc);
83 // found target assignment program - no need to parse further
92 llvm::StringRef program, llvm::StringRef register_name,
96 ResolveFPOProgram(program, register_name, arch_type, node_alloc);
91 TranslateFPOProgramToDWARFExpression( llvm::StringRef program, llvm::StringRef register_name, llvm::Triple::ArchType arch_type, Stream &stream) argument
/freebsd-12-stable/contrib/less/
H A Dregexp.h19 char program[1]; /* Unwarranted chumminess with compiler. */ member in struct:regexp
/freebsd-12-stable/share/man/man1/
H A DMakefile13 MAN+= atf-test-program.1
/freebsd-12-stable/contrib/gperf/
H A Dconfigure853 -program-prefix | --program-prefix | --program-prefi | --program-pref \
854 | --program-pre | --program-pr | --program-p)
856 -program-prefix=* | --program-prefix=* | --program
[all...]
/freebsd-12-stable/contrib/gperf/doc/
H A Dconfigure856 -program-prefix | --program-prefix | --program-prefi | --program-pref \
857 | --program-pre | --program-pr | --program-p)
859 -program-prefix=* | --program-prefix=* | --program
[all...]
/freebsd-12-stable/contrib/gcclibs/libiberty/
H A Dpexecute.c1 /* Utilities to execute a program in a subprocess (possibly linked by pipes
39 pexecute (const char *program, char * const *argv, const char *pname, argument
70 program, argv, NULL, NULL, &err);
/freebsd-12-stable/contrib/binutils/libiberty/
H A Dpexecute.c1 /* Utilities to execute a program in a subprocess (possibly linked by pipes
39 pexecute (const char *program, char * const *argv, const char *pname, argument
70 program, argv, NULL, NULL, &err);
/freebsd-12-stable/lib/libc/rpc/
H A Dpmap_getport.c66 * Find the mapped port for program,version.
71 pmap_getport(struct sockaddr_in *address, u_long program, u_long version, argument
85 parms.pm_prog = program;
/freebsd-12-stable/include/rpcsvc/
H A Dklm_prot.x127 program KLM_PROG {
H A Dyppasswd.x46 program YPPASSWDPROG {
H A Dypupdate_prot.x4 % * media and as a part of the software program in whole or part. Users
7 % * program developed by the user or with the express written consent of
61 program YPU_PROG {
/freebsd-12-stable/contrib/sqlite3/tea/
H A Dconfigure.ac2 dnl This file is an input file used by the GNU "autoconf" program to
/freebsd-12-stable/contrib/opie/
H A Dpopen.c97 * may create a pipe to a hidden program as a side effect of a list or dir
105 FILE *ftpd_popen FUNCTION((program, type), char *program AND char *type)
119 for (argc = 0, cp = program; argc < MAXUSRARGS-1; cp = NULL) {
/freebsd-12-stable/tools/tools/ether_reflect/
H A Dether_reflect.c28 * Purpose: This program uses libpcap to read packets from the network
73 struct bpf_program program; local
120 if (pcap_compile(capture, &program, in_string, 1, netmask) < 0)
123 if (pcap_setfilter(capture, &program) < 0)

Completed in 227 milliseconds

1234567891011