Searched refs:msg (Results 51 - 65 of 65) sorted by last modified time

123

/system/core/logwrapper/
H A Dlogwrapper.c30 void fatal(const char *msg) { argument
31 fprintf(stderr, "%s", msg);
32 ALOG(LOG_ERROR, "logwrapper", "%s", msg);
/system/core/sh/
H A Darith_lex.c346 static void yy_fatal_error (yyconst char msg[] );
637 #define YY_FATAL_ERROR(msg) yy_fatal_error( msg )
1699 static void yy_fatal_error (yyconst char* msg )
1701 (void) fprintf( stderr, "%s\n", msg );
H A Derror.c125 exvwarning(int sv_errno, const char *msg, va_list ap) argument
137 if (msg != NULL) {
138 doformat(&errout, msg, ap);
154 exverror(int cond, const char *msg, va_list ap) argument
160 if (msg) {
162 TRACEV((msg, ap));
167 if (msg)
168 exvwarning(-1, msg, ap);
177 error(const char *msg, ...) argument
181 va_start(ap, msg);
189 exerror(int cond, const char *msg, ...) argument
286 const char *msg; /* text describing the error */ member in struct:errname
[all...]
H A Dparser.c1600 char msg[64]; local
1603 fmtstr(msg, 64, "%s unexpected (expecting %s)",
1606 fmtstr(msg, 64, "%s unexpected", tokname[lasttoken]);
1608 synerror(msg);
1614 synerror(const char *msg) argument
1618 outfmt(&errout, "Syntax error: %s\n", msg);
/system/core/toolbox/
H A Dlsof.c144 char msg[BUF_MAX]; local
145 snprintf(msg, sizeof(msg), "%s (opendir: %s)", info->path, strerror(errno));
148 "", "", "", "", msg);
H A Dnewfs_msdos.c101 #define argto1(arg, lo, msg) argtou(arg, lo, 0xff, msg)
102 #define argto2(arg, lo, msg) argtou(arg, lo, 0xffff, msg)
103 #define argto4(arg, lo, msg) argtou(arg, lo, 0xffffffff, msg)
104 #define argtox(arg, lo, msg) argtou(arg, lo, UINT_MAX, msg)
938 ckgeom(const char *fname, u_int val, const char *msg) argument
941 errx(1, "%s: no default %s", fname, msg);
951 argtou(const char *arg, u_int lo, u_int hi, const char *msg) argument
967 argtooff(const char *arg, const char *msg) argument
[all...]
/system/extras/atrace/
H A Datrace.c389 fprintf(stderr, "error deflating trace: %s\n", zs.msg);
/system/extras/fatblock/
H A Dutils.c33 void warn(char *msg) argument
35 fprintf(stderr, "%s", msg);
38 void die(char *msg) argument
40 fprintf(stderr, "%s", msg);
H A Dutils.h31 void warn(char *msg);
32 void die(char *msg);
/system/extras/tests/sdcard/
H A Dsysutil.cpp65 void printErrno(const char *msg, const char *filename) argument
67 fprintf(stderr, "# %s %s %d %s\n", msg, filename, errno, strerror(errno));
/system/netd/
H A DBandwidthController.cpp1030 char *msg; local
1031 asprintf(&msg, "%s %s %lld %lld %lld %lld", ifaceIn.c_str(), ifaceOut.c_str(),
1033 return msg;
H A DCommandListener.cpp258 char *msg; local
259 asprintf(&msg, "%lu", rx);
260 cli->sendMsg(ResponseCode::InterfaceRxCounterResult, msg, false);
261 free(msg);
276 char *msg = NULL; local
277 asprintf(&msg, "%lu", tx);
278 cli->sendMsg(ResponseCode::InterfaceTxCounterResult, msg, false);
279 free(msg);
300 char *msg = NULL; local
301 asprintf(&msg, "
429 char *msg = NULL; local
984 char *msg; local
1044 char *msg; local
1063 char *msg; local
1089 char *msg; local
1111 char *msg; local
1263 char *msg = tetherStats.getStatsLine(); local
[all...]
H A DDnsProxyListener.cpp116 char* msg = NULL; local
117 asprintf( &msg, "Invalid number of arguments to getaddrinfo: %i", argc);
118 ALOGW("%s", msg);
119 cli->sendMsg(ResponseCode::CommandParameterError, msg, false);
120 free(msg);
182 char* msg = NULL; local
183 asprintf(&msg, "Invalid number of arguments to gethostbyaddr: %i", argc);
184 ALOGW("%s", msg);
185 cli->sendMsg(ResponseCode::CommandParameterError, msg, false);
186 free(msg);
198 char* msg = NULL; local
[all...]
H A DMDnsSdListener.cpp100 char *msg; local
104 asprintf(&msg, "%d %d", refNumber, errorCode);
105 context->mListener->sendBroadcast(ResponseCode::ServiceDiscoveryFailed, msg, false);
123 asprintf(&msg, "%d %s %s %s", refNumber, quotedServiceName, regType, replyDomain);
125 context->mListener->sendBroadcast(respCode, msg, false);
127 free(msg);
132 char *msg; local
133 asprintf(&msg, "Invalid number of arguments to %s", str);
134 cli->sendMsg(ResponseCode::CommandParameterError, msg, false);
135 free(msg);
148 char *msg; local
193 char *msg; local
247 char *msg; local
305 char *msg; local
312 char *msg; local
359 char *msg; local
395 char* msg = NULL; local
[all...]
H A DNetlinkHandler.cpp97 char msg[255]; local
98 snprintf(msg, sizeof(msg), "Iface added %s", name);
101 msg, false);
105 char msg[255]; local
106 snprintf(msg, sizeof(msg), "Iface removed %s", name);
109 msg, false);
113 char msg[255]; local
114 snprintf(msg, sizeo
122 char msg[255]; local
131 char msg[255]; local
140 char msg[255]; local
[all...]

Completed in 101 milliseconds

123