Home
last modified time | relevance | path

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

/bootable/diskinstaller/
Dinstaller.c80 char *outbuf; in exec_cmd() local
91 if (!(outbuf = malloc(size + 1))) { in exec_cmd()
97 strcpy(outbuf, cmd); in exec_cmd()
100 strcat(outbuf, " "); in exec_cmd()
101 strcat(outbuf, str); in exec_cmd()
105 ALOGI("Executing: %s", outbuf); in exec_cmd()
106 rv = system(outbuf); in exec_cmd()
107 free(outbuf); in exec_cmd()
113 ALOGI("Done executing %s (%d)", outbuf, rv); in exec_cmd()