Home
last modified time | relevance | path

Searched refs:perror_exit_raw (Results 1 – 10 of 10) sorted by relevance

/external/toybox/toys/posix/
Dpaste.c53 else if (!(f = fopen(*args, "r"))) perror_exit_raw(*args);
75 else if (!(*files = fopen(*args, "r"))) perror_exit_raw(*args);
/external/toybox/toys/other/
Dchroot.c27 if (chdir(*toys.optargs) || chroot(".")) perror_exit_raw(*toys.optargs); in chroot_main()
Dmountpoint.c36 if (lstat(arg, &st1)) perror_exit_raw(arg); in mountpoint_main()
Dinotifyd.c68 if (inotify_add_watch(fds.fd, path, mask) < 0) perror_exit_raw(path); in inotifyd_main()
Dacpi.c38 if (!fscanf(fil = xfdopen(fd, "r"), "%d", &ret)) perror_exit_raw(name);
Difconfig.c113 if (ioctl(TT.sockfd, SIOCGIFFLAGS, &ifre)<0) perror_exit_raw(name); in display_ifconfig()
/external/toybox/toys/lsb/
Dmknod.c57 perror_exit_raw(*toys.optargs);
/external/toybox/lib/
Dlib.c99 void perror_exit_raw(char *msg) in perror_exit_raw() function
287 if (errno) perror_exit_raw(str); in xstrtol()
Dlib.h162 void perror_exit_raw(char *msg);
Dxwrap.c303 if (fd == -1) perror_exit_raw(path); in xcreate()