HomeSort by relevance Sort by last modified time
    Searched refs:error_exit (Results 76 - 100 of 150) sorted by null

1 2 34 5 6

  /external/toybox/toys/pending/
crontab.c 226 error_exit("No crontab for '%s'", name);
258 error_exit("errors in crontab file '%s', can't install.", fname);
343 if (getuid()) error_exit("must be privileged to use -u");
openvt.c 142 if ((fd = open_console()) < 0) error_exit("can't open console");
tcpsvd.c 86 error_exit("getnameinfo: %s", gai_strerror(status));
109 if (!addr) error_exit("NULL ip");
230 error_exit("Invalid port, Range is [0-65535]");
246 if (!rp) error_exit("Invalid IP %s", host);
tar.c 322 if (pipe(pipefd) == -1) error_exit("pipe");
504 if (*endp && *endp != ' ') error_exit("invalid param");
513 if (pipe(pipefd) == -1) error_exit("pipe");
534 if (readall(tar->src_fd, buf, size) != size) error_exit("short read");
595 error_exit("read error");
613 error_exit("invalid tar format");
621 if (cksum != otoi(tar.chksum, sizeof(tar.chksum))) error_exit("wrong cksum");
652 if (file_hdr->name[255]) error_exit("filename too long");
772 if (!TT.inc) error_exit("empty archive");
tr.c 201 error_exit("bad equiv class");
260 if (toys.optargs[1][0] == '\0') error_exit("set2 can't be empty string");
dhcp.c 379 if(!str) error_exit("NULL address string.");
381 if(addr == -1) error_exit("Wrong address %s.",str );
409 if (count == size) error_exit("Obsolete OR Unknown Option : %s", option);
418 if (count == size) error_exit("Obsolete OR Unknown Option : %s", option);
424 if (!valstr) error_exit("option %s has no value defined.\n", option);
431 if (convtmp < 0) error_exit("Invalid/wrong formated number %s", valstr);
439 if (convtmp < 0) error_exit("Invalid/malformed number %s", valstr);
447 if (convtmp < 0) error_exit("Invalid/malformed number %s", valstr);
482 if (!tp) error_exit("malformed static route option");
485 if (striptovar(grp, (uint8_t*)&nip) < 0) error_exit("malformed static route option")
    [all...]
tftp.c 99 if(strlen(path) > TFTP_BLKSIZE) error_exit("path too long");
435 else error_exit("Please provide some files.");
446 error_exit("bad address '%s' : %s", toys.optargs[0], gai_strerror(ret));
mdev.c 172 if (field && field!=3) error_exit("Bad line %d", line);
  /external/toybox/toys/posix/
od.c 90 } else error_exit("bad -tf '%d'", t->size);
261 error_exit("bad -t %s", base);
274 error_exit("bad -A '%c'", *TT.address_base);
kill.c 85 error_exit("Unknown signal '%s'", arg);
cpio.c 76 if (inpos != outpos) error_exit("bad header");
117 if (memcmp(toybuf, "070701", 6)) error_exit("bad cpio magic");
cp.c 369 if (toys.optc>1 && !destdir) error_exit("'%s' not directory", destname);
394 if (*s) error_exit("bad --preserve=%s", pre);
495 if (toys.optc < 2) error_exit("needs 2 args");
id.c 156 } else if (toys.optflags&FLAG_Z) error_exit("%s disabled", lsm_name());
xargs.c 161 if (data && !TT.entries) error_exit("argument too long");
  /external/libjpeg-turbo/
example.c 235 * Our example here shows how to override the "error_exit" method so that
237 * rather than calling exit() as the standard error_exit method does.
241 * establish the return point. We want the replacement error_exit to do a
243 * error_exit routine. To do this, we make a private extension of the
259 * Here's the routine that will replace the standard error_exit method:
313 /* We set up the normal JPEG error routines, then override error_exit. */
315 jerr.pub.error_exit = my_error_exit;
bmp.c 186 jerr.pub.error_exit=my_error_exit;
270 jerr.pub.error_exit=my_error_exit;
  /external/toybox/lib/
net.c 32 error_exit("Connect '%s%s%s': %s", host, port ? ":" : "", port ? port : "",
lib.c 41 void error_exit(char *msg, ...) function
96 error_exit("%s", msg);
309 if (c==numstr || *c) error_exit("not integer: %s", numstr);
318 if (val < low) error_exit("%lld < %lld", val, low);
319 if (val > high) error_exit("%lld > %lld", val, high);
360 if (len < 1) error_exit("bad utf8 %x", (int)c);
457 if (CFG_TOYBOX_DEBUG && (ibuf ? !*plen : *plen)) error_exit("bad readfileat");
640 if(-1 == (fd = mkstemp(*tempname))) error_exit("no temp file");
906 error_exit("bad mode '%s'", modestr);
  /external/toybox/toys/lsb/
umount.c 114 error_exit("Need 1 arg or -a");
  /external/pdfium/core/fxcodec/codec/
fx_codec_jpeg.cpp 108 jerr.error_exit = _error_fatal;
245 jerr.error_exit = _error_fatal;
384 p->m_ErrMgr.error_exit = _error_fatal1;
491 jerr.error_exit = _error_do_nothing;
  /external/skia/src/images/
SkJPEGImageEncoder.cpp 110 sk_err.error_exit = skjpeg_error_exit;
  /external/toybox/toys/net/
ifconfig.c 78 if (!rp) error_exit("bad address '%s' : %s", host, gai_strerror(status));
286 if(!buf) error_exit("bad name %s", name);
424 error_exit("bad hw-addr '%s'", *argv);
474 if (!*++argv) error_exit("%s needs argument", t->name);
  /external/toybox/toys/other/
losetup.c 177 if (toys.optc) error_exit("bad args");
vmstat.c 73 error_exit("No %sin %s\n", vmstuff[i], name);
  /frameworks/av/services/camera/libcameraservice/api1/client2/
JpegCompressor.cpp 87 mCInfo.err->error_exit = jpegErrorHandler;

Completed in 5387 milliseconds

1 2 34 5 6