Home
last modified time | relevance | path

Searched refs:ErrorAbort (Results 1 – 3 of 3) sorted by relevance

/bootable/recovery/updater/
Dinstall.c52 return ErrorAbort(state, "%s() expects 4 args, got %d", name, argc); in MountFn()
64 ErrorAbort(state, "fs_type argument to %s() can't be empty", name); in MountFn()
68 ErrorAbort(state, "partition_type argument to %s() can't be empty", in MountFn()
73 ErrorAbort(state, "location argument to %s() can't be empty", name); in MountFn()
77 ErrorAbort(state, "mount_point argument to %s() can't be empty", name); in MountFn()
140 return ErrorAbort(state, "%s() expects 1 arg, got %d", name, argc); in IsMountedFn()
147 ErrorAbort(state, "mount_point argument to unmount() can't be empty"); in IsMountedFn()
168 return ErrorAbort(state, "%s() expects 1 arg, got %d", name, argc); in UnmountFn()
175 ErrorAbort(state, "mount_point argument to unmount() can't be empty"); in UnmountFn()
205 return ErrorAbort(state, "%s() expects 5 args, got %d", name, argc); in FormatFn()
[all …]
/bootable/recovery/edify/
Dexpr.h159 Value* ErrorAbort(State* state, const char* format, ...) __attribute__((format(printf, 2, 3)));
Dexpr.c39 ErrorAbort(state, "expecting string, got value type %d", v->type); in Evaluate()
498 Value* ErrorAbort(State* state, const char* format, ...) { in ErrorAbort() function