Lines Matching refs:line
216 char *line = NULL; in parseInstalledAppInfo() local
226 while ((numRead = getline(&line, &len, fp)) != -1) { in parseInstalledAppInfo()
228 …sscanf(line, "app: %d id: %" PRIx64 " ver: %" PRIx32 " size: %" PRIx32 "\n", &currApp->num, &currA… in parseInstalledAppInfo()
233 if (line) in parseInstalledAppInfo()
234 free(line); in parseInstalledAppInfo()
253 char *line = NULL; in findAppIdByName() local
262 while ((numRead = getline(&line, &len, fp)) != -1) { in findAppIdByName()
266 …sscanf(line, "%" STRINGIFY(MAX_APP_NAME_LEN) "s %" PRIx64 " %" PRIx32 "\n", entry, appId, &appVers… in findAppIdByName()
276 if (line) in findAppIdByName()
277 free(line); in findAppIdByName()
285 char *line = NULL; in parseConfigAppInfo() local
296 …while (((numRead = getline(&line, &len, fp)) != -1) && (*installCnt < MAX_INSTALL_CNT) && (*uninst… in parseConfigAppInfo()
301 …sscanf(line, "%" STRINGIFY(MAX_APP_NAME_LEN) "s %" PRIx64 " %" PRIx32 "\n", appsToInstall[*install… in parseConfigAppInfo()
316 if (line) in parseConfigAppInfo()
317 free(line); in parseConfigAppInfo()