HomeSort by: relevance | last modified time | path
    Searched refs:inname (Results 1 - 22 of 22) sorted by relevancy

  /src/external/gpl2/mkhybrid/dist/libfile/
lfile.c 105 char * get_magic_match (const char *inname);
113 get_magic_match(const char *inname)
122 if (stat(inname, &sb) != 0)
128 if ((fd = open(inname, O_RDONLY)) < 0)
155 (void) utimes(inname, utsbuf); /* don't care if loses */
161 (void) utime(inname, &utbuf); /* don't care if loses */
  /src/external/gpl2/dtc/dist/tests/
move_and_save.c 28 const char *inname; local
33 inname = argv[1];
44 sprintf(outname, "moved.%s", inname);
52 sprintf(outname, "shunted.%s", inname);
60 sprintf(outname, "deshunted.%s", inname);
open_pack.c 27 const char *inname; local
32 inname = argv[1];
46 sprintf(outname, "opened.%s", inname);
52 sprintf(outname, "repacked.%s", inname);
nopulate.c 49 const char *inname; local
56 inname = argv[1];
58 sprintf(outname, "noppy.%s", inname);
mangle-layout.c 114 const char *inname; local
121 inname = argv[1];
125 sprintf(outname, "v%d.%s.%s", version, blockorder, inname);
  /src/external/cddl/dtracetoolkit/dist/Bin/
guess.d 102 self->inname = 1;
108 /self->inname/
110 self->inname = 0;
  /src/external/cddl/dtracetoolkit/dist/Misc/
guess.d 102 self->inname = 1;
108 /self->inname/
110 self->inname = 0;
  /src/common/dist/zlib/examples/
gun.c 538 /* Decompress the file inname to the file outnname, of if test is true, just
540 inname is NULL or an empty string, read from stdin. If outname is NULL or
542 structure. When appropriate, copy the file attributes from inname to
548 local int gunzip(z_stream *strm, char *inname, char *outname, int test)
554 if (inname == NULL || *inname == 0) {
555 inname = "-";
559 infile = open(inname, O_RDONLY, 0);
561 fprintf(stderr, "gun cannot open %s\n", inname);
591 copymeta(inname, outname); /* copy attributes *
    [all...]
  /src/external/gpl3/binutils/dist/zlib/examples/
gun.c 538 /* Decompress the file inname to the file outnname, of if test is true, just
540 inname is NULL or an empty string, read from stdin. If outname is NULL or
542 structure. When appropriate, copy the file attributes from inname to
548 local int gunzip(z_stream *strm, char *inname, char *outname, int test)
554 if (inname == NULL || *inname == 0) {
555 inname = "-";
559 infile = open(inname, O_RDONLY, 0);
561 fprintf(stderr, "gun cannot open %s\n", inname);
591 copymeta(inname, outname); /* copy attributes *
    [all...]
  /src/external/gpl3/binutils.old/dist/zlib/examples/
gun.c 538 /* Decompress the file inname to the file outnname, of if test is true, just
540 inname is NULL or an empty string, read from stdin. If outname is NULL or
542 structure. When appropriate, copy the file attributes from inname to
548 local int gunzip(z_stream *strm, char *inname, char *outname, int test)
554 if (inname == NULL || *inname == 0) {
555 inname = "-";
559 infile = open(inname, O_RDONLY, 0);
561 fprintf(stderr, "gun cannot open %s\n", inname);
591 copymeta(inname, outname); /* copy attributes *
    [all...]
  /src/external/gpl3/gdb/dist/zlib/examples/
gun.c 538 /* Decompress the file inname to the file outnname, of if test is true, just
540 inname is NULL or an empty string, read from stdin. If outname is NULL or
542 structure. When appropriate, copy the file attributes from inname to
548 local int gunzip(z_stream *strm, char *inname, char *outname, int test)
554 if (inname == NULL || *inname == 0) {
555 inname = "-";
559 infile = open(inname, O_RDONLY, 0);
561 fprintf(stderr, "gun cannot open %s\n", inname);
591 copymeta(inname, outname); /* copy attributes *
    [all...]
  /src/external/gpl3/gdb.old/dist/zlib/examples/
gun.c 538 /* Decompress the file inname to the file outnname, of if test is true, just
540 inname is NULL or an empty string, read from stdin. If outname is NULL or
542 structure. When appropriate, copy the file attributes from inname to
548 local int gunzip(z_stream *strm, char *inname, char *outname, int test)
554 if (inname == NULL || *inname == 0) {
555 inname = "-";
559 infile = open(inname, O_RDONLY, 0);
561 fprintf(stderr, "gun cannot open %s\n", inname);
591 copymeta(inname, outname); /* copy attributes *
    [all...]
  /src/external/public-domain/xz/dist/doc/examples/
02_decompress.c 104 decompress(lzma_stream *strm, const char *inname, FILE *infile, FILE *outfile)
134 inname, strerror(errno));
236 inname, msg, ret);
  /src/external/bsd/file/dist/src/
magic.c 419 magic_file(struct magic_set *ms, const char *inname)
423 return file_or_fd(ms, inname, STDIN_FILENO);
427 file_or_fd(struct magic_set *ms, const char *inname, int fd)
448 switch (file_fsmagic(ms, inname, &sb)) {
463 if (inname != NULL) {
466 if ((fd = open(inname, flags)) < 0) {
467 okstat = stat(inname, &sb) == 0;
481 unreadable_info(ms, sb.st_mode, inname) == -1)
495 if (inname == NULL)
513 if (nbytes == 0 && inname) {
    [all...]
file.c 590 fname_print(const char *inname)
592 size_t n = strlen(inname);
601 bytesconsumed = mbrtowc(&nextchar, inname, n, &state);
604 nextchar = *inname++;
610 inname += bytesconsumed;
622 unsigned char c = CAST(unsigned char, inname[i]);
636 process(struct magic_set *ms, const char *inname, int wid)
639 int std_in = strcmp(inname, "-") == 0;
643 const char *pname = std_in ? "/dev/stdin" : inname;
653 : (wid - file_mbswidth(ms, inname))), "");
    [all...]
funcs.c 330 const char *inname __attribute__ ((__unused__)),
358 if ((ms->flags & MAGIC_NO_CHECK_APPTYPE) == 0 && inname) {
359 m = file_os2_apptype(ms, inname, &b);
375 m = file_zmagic(ms, &b, inname);
  /src/crypto/external/bsd/netpgp/dist/src/netpgpverify/
main.c 90 verify_data(pgpv_t *pgp, const char *cmd, const char *inname, char *in, ssize_t cc)
118 printf("Good signature for %s made ", inname);
  /src/external/mpl/dhcp/dist/includes/omapip/
isclib.h 129 isclib_make_dst_key(char *inname,
  /src/external/mpl/dhcp/dist/omapip/
isclib.c 331 isclib_make_dst_key(char *inname,
362 result = dhcp_isc_name((unsigned char *)inname, &name0, &name);
  /src/external/bsd/pcc/dist/pcc/f77/f77/
f77.c 534 char *inname, *outname; local
542 inname = NULL;
552 inname = t+1;
583 if(inname)
584 freopen(inname, "r", stdin);
  /src/crypto/external/bsd/netpgp/dist/src/lib/
signature.c 977 const char *inname,
992 size_t flen = strlen(inname) + 1 + strlen(suffix) + 1;
999 (void) snprintf(f, flen, "%s.%s", inname, suffix);
1010 \param inname Input filename
1020 const char *inname,
1065 if (!pgp_mem_readfile(infile, inname)) {
1070 fd_out = open_output_file(&output, inname, outname,
  /src/libexec/makewhatis/
makewhatis.c 773 nroff(const char *inname, gzFile in)
855 data = parsecatpage(inname, in);
864 inname, WEXITSTATUS(status));

Completed in 48 milliseconds