Home
last modified time | relevance | path

Searched refs:parse_error (Results 1 – 4 of 4) sorted by relevance

/system/core/init/
Dinit_parser.c620 parse_error(state, "services must have a name and a program\n"); in parse_service()
624 parse_error(state, "invalid service name '%s'\n", args[1]); in parse_service()
630 parse_error(state, "ignored duplicate definition of service '%s'\n", args[1]); in parse_service()
637 parse_error(state, "out of memory\n"); in parse_service()
669 parse_error(state, "class option requires a classname\n"); in parse_line_service()
683 parse_error(state, "ioprio optin usage: ioprio <rt|be|idle> <ioprio 0-7>\n"); in parse_line_service()
688 parse_error(state, "priority value must be range 0 - 7\n"); in parse_line_service()
699 parse_error(state, "ioprio option usage: ioprio <rt|be|idle> <0-7>\n"); in parse_line_service()
705 parse_error(state, "group option requires a group id\n"); in parse_line_service()
707 parse_error(state, "group option accepts at most %d supp. groups\n", in parse_line_service()
[all …]
Dueventd_parser.c106 parse_error(state, "invalid subsystem name '%s'\n", args[1]); in parse_subsystem()
112 parse_error(state, "ignored duplicate definition of subsystem '%s'\n", in parse_subsystem()
119 parse_error(state, "out of memory\n"); in parse_subsystem()
146 parse_error(state, "invalid devname '%s'\n", args[1]); in parse_line_subsystem()
153 parse_error(state, "dirname '%s' does not start with '/'\n", in parse_line_subsystem()
158 parse_error(state, "invalid option '%s'\n", args[0]); in parse_line_subsystem()
186 parse_error(state, "%s requires %d %s\n", args[0], kw_nargs - 1, in parse_line()
Dparser.h38 void parse_error(struct parse_state *state, const char *fmt, ...);
Dparser.c51 void parse_error(struct parse_state *state, const char *fmt, ...) in parse_error() function