Searched defs:corefile (Results 1 - 5 of 5) sorted by relevance

/illumos-gate/usr/src/lib/libkvm/common/
H A Dtest.c165 tst_open(char *namelist, char *corefile, char *swapfile, int flag) argument
169 (corefile == NULL) ? "LIVE_KERNEL" : corefile,
171 ((corefile == NULL) ? "LIVE_KERNEL" : "(none)") : swapfile,
175 if ((cookie = kvm_open(namelist, corefile,
H A Dkvm.c89 kvm_open(const char *namelist, const char *corefile, const char *swapfile, argument
105 if (corefile == NULL)
106 corefile = "/dev/kmem";
108 if (stat64(corefile, &corestat) == -1)
109 return (fail(kd, err, "cannot stat %s", corefile));
132 if ((kd->kvm_corefd = open64(corefile, flag)) == -1)
133 return (fail(kd, err, "cannot open %s", corefile));
139 "(bad magic number %x)", corefile,
143 "libkvm version (%u) != corefile version (%u)",
147 "cannot examine with %d-bit libkvm", corefile,
[all...]
/illumos-gate/usr/src/uts/common/syscall/
H A Dcorectl.c430 corectl_path_t *corefile; local
441 corefile = p->p_corefile;
444 if (corefile != NULL)
445 corectl_path_rele(corefile);
/illumos-gate/usr/src/cmd/mdb/intel/modules/mdb_kb/
H A Dmdb_kb.c1333 xkb_open(const char *namelist, const char *corefile, const char *swapfile, argument
1341 if (stat64(corefile, &corestat) == -1)
1342 return (xkb_fail(xkb, "cannot stat %s", corefile));
1360 xkb->xkb_path = strdup(corefile);
/illumos-gate/usr/src/cmd/savecore/
H A Dsavecore.c569 copy_crashfile(const char *corefile) argument
571 int corefd = Open(corefile, O_WRONLY | O_CREAT | O_TRUNC, 0644);
578 "Copying %s to %s/%s\n", dumpfile, savedir, corefile);
592 * Read in the compressed symbol table, copy it to corefile.
1335 build_corefile(const char *namelist, const char *corefile) argument
1345 int corefd = Open(corefile, O_WRONLY | O_CREAT | O_TRUNC, 0644);
1353 Fstat(corefd, &st, corefile);
1356 (void) printf("%s: %ld block size\n", corefile,
1370 * Read in the compressed symbol table, copy it to corefile,
1389 (void) printf("Constructing corefile
1655 char namelist[30], corefile[30], boundstr[30]; local
[all...]

Completed in 67 milliseconds