Home
last modified time | relevance | path

Searched refs:ERROR (Results 1 – 14 of 14) sorted by relevance

/system/core/fastboot/
Dprotocol.c36 static char ERROR[128]; variable
40 return ERROR; in fb_get_error()
52 sprintf(ERROR, "status read failed (%s)", strerror(errno)); in check_response()
59 sprintf(ERROR, "status malformed (%d bytes)", r); in check_response()
78 sprintf(ERROR, "remote: %s", status + 4); in check_response()
80 strcpy(ERROR, "remote failure"); in check_response()
88 strcpy(ERROR, "data size too large"); in check_response()
95 strcpy(ERROR,"unknown status code"); in check_response()
115 sprintf(ERROR,"command too large"); in _command_send()
120 sprintf(ERROR,"command write failed (%s)", strerror(errno)); in _command_send()
[all …]
/system/core/init/
Dkeychords.c43 ERROR("could not allocate keychords\n"); in add_service_keycodes()
75 ERROR("could not open /dev/keychord\n"); in keychord_init()
82 ERROR("could not configure /dev/keychord %d (%d)\n", ret, errno); in keychord_init()
108 ERROR("could not read keychord id\n"); in handle_keychord()
119 ERROR("service for keychord %d not found\n", id); in handle_keychord()
Dueventd.c104 ERROR("invalid line ueventd.rc line for '%s'\n", args[0]); in set_device_permission()
124 ERROR("invalid mode '%s'\n", args[1]); in set_device_permission()
131 ERROR("invalid uid '%s'\n", args[2]); in set_device_permission()
139 ERROR("invalid gid '%s'\n", args[3]); in set_device_permission()
Dproperty_service.c273 ERROR("Unable to write persistent property to temp file %s errno: %d\n", tempPath, errno); in write_persistent_property()
281 ERROR("Unable to rename persistent property file %s to %s\n", tempPath, path); in write_persistent_property()
379 ERROR("Unable to recieve socket options\n"); in handle_property_set_fd()
386 ERROR("sys_prop: mis-match msg size recieved: %d expected: %d\n", in handle_property_set_fd()
400 ERROR("sys_prop: Unable to %s service ctl [%s] uid: %d pid:%d\n", in handle_property_set_fd()
407 ERROR("sys_prop: permission denied uid:%d name:%s\n", in handle_property_set_fd()
489 ERROR("Unable to read persistent property file %s errno: %d\n", path, errno); in load_persistent_properties()
493 ERROR("Unable to open persistent property file %s errno: %d\n", path, errno); in load_persistent_properties()
498ERROR("Unable to open persistent property directory %s errno: %d\n", PERSISTENT_PROPERTY_DIR, errn… in load_persistent_properties()
Dutil.c127 ERROR("Failed to open socket '%s': %s\n", name, strerror(errno)); in create_socket()
138 ERROR("Failed to unlink old socket '%s': %s\n", name, strerror(errno)); in create_socket()
144 ERROR("Failed to bind socket '%s': %s\n", name, strerror(errno)); in create_socket()
257 ERROR("too many mtd partitions\n"); in find_mtd_partitions()
298 ERROR("clock_gettime(CLOCK_MONOTONIC) failed: %s\n", strerror(errno)); in gettime()
322 ERROR("path too long for mkdir_recursive\n"); in mkdir_recursive()
364 ERROR("Failed to create directory %s: %s (%d)\n", buf, strerror(errno), errno); in make_link()
368 ERROR("Failed to symlink %s to %s: %s (%d)\n", oldpath, newpath, strerror(errno), errno); in make_link()
Dinit.c171 ERROR("service '%s' requires console\n", svc->name); in service_start()
177 ERROR("cannot find '%s', disabling '%s'\n", svc->args[0], svc->name); in service_start()
183 ERROR("service '%s' must be one-shot to use dynamic args, disabling\n", in service_start()
221 ERROR("Failed to set pid %d ioprio = %d,%d: %s\n", in service_start()
257 ERROR("cannot execve('%s'): %s\n", svc->args[0], strerror(errno)); in service_start()
281 ERROR("failed to start '%s'\n", svc->name); in service_start()
364 ERROR("no such service '%s'\n", name); in msg_start()
377 ERROR("no such service '%s'\n", name); in msg_stop()
388 ERROR("unknown control msg '%s'\n", msg); in handle_control_message()
518 ERROR("Timed out waiting for %s\n", coldboot_done); in wait_for_coldboot_done_action()
[all …]
Dsignal_handler.c60 ERROR("untracked pid %d exited\n", pid); in wait_for_one_process()
96 ERROR("critical process '%s' exited %d times in %d minutes; " in wait_for_one_process()
Dlog.h26 #define ERROR(x...) log_write(3, "<3>init: " x) macro
Dparser.c66 ERROR("%s", buf); in parse_error()
Dlogo.c118 ERROR("cannot open '%s'\n", fn); in load_565rle_image()
Dbuiltins.c357 ERROR("out of loopback devices"); in do_mount()
Dinit_parser.c368 ERROR("property name too long in trigger %s", act->name); in queue_all_property_triggers()
/system/core/sdcard/
Dsdcard.c72 #define ERROR(x...) fprintf(stderr,x) macro
182 ERROR("lstat('%s') errno %d\n", path, errno); in node_get_attr()
364 ERROR("*** REPLY FAILED *** %d\n", errno); in fuse_reply()
396 ERROR("malformed header\n"); in handle_fuse_request()
547 ERROR("ERROR\n"); in handle_fuse_request()
648 ERROR("ERROR\n"); in handle_fuse_request()
708 ERROR("NOTIMPL op=%d uniq=%llx nid=%llx\n", in handle_fuse_request()
731 ERROR("handle_fuse_requests: errno=%d\n", errno); in handle_fuse_requests()
749 ERROR("usage: sdcard <path> <uid> <gid>\n"); in main()
756 ERROR("uid and gid must be nonzero\n"); in main()
[all …]
/system/extras/tests/bionic/libc/common/
Dtest_pthread_mutex.c96 #define ERROR(errcode,...) error((errcode),__FUNCTION__,__VA_ARGS__) macro
99 { int _ret = (cond); if (_ret != 0) ERROR(_ret,"%d:%s", __LINE__, #cond); }