Searched defs:ini_file (Results 1 - 6 of 6) sorted by relevance

/external/chromium_org/chrome/common/importer/
H A Dfirefox_importer_utils_linux.cc13 base::FilePath ini_file; local
19 ini_file = home.Append(".mozilla/firefox/profiles.ini");
21 if (base::PathExists(ini_file))
22 return ini_file;
H A Dfirefox_importer_utils_win.cc71 base::FilePath ini_file; local
74 if (!PathService::Get(base::DIR_APP_DATA, &ini_file))
77 ini_file = ini_file.AppendASCII("Mozilla");
78 ini_file = ini_file.AppendASCII("Firefox");
79 ini_file = ini_file.AppendASCII("profiles.ini");
81 return base::PathExists(ini_file) ? ini_file
[all...]
H A Dfirefox_importer_utils.cc61 base::FilePath ini_file = GetProfilesINI(); local
63 base::ReadFileToString(ini_file, &content);
/external/fio/
H A Dclient.h67 char **ini_file; member in struct:fio_client
H A Dclient.c145 free(client->ini_file[--client->nr_ini_file]);
146 if (client->ini_file)
147 free(client->ini_file);
265 void fio_client_add_ini_file(void *cookie, const char *ini_file) argument
270 dprint(FD_NET, "client <%s>: add ini %s\n", client->hostname, ini_file);
273 client->ini_file = realloc(client->ini_file, new_size);
274 client->ini_file[client->nr_ini_file] = strdup(ini_file);
694 const char *ini = client->ini_file[
[all...]
H A Dinit.c38 static char **ini_file; variable
2045 ini_file = realloc(ini_file, ini_idx * sizeof(char *));
2046 ini_file[ini_idx - 1] = strdup(argv[optind]);
2092 if (fio_clients_send_ini(ini_file[i]))
2094 free(ini_file[i]);
2096 if (parse_jobs_ini(ini_file[i], 0, i, type))
2098 free(ini_file[i]);
2108 free(ini_file);

Completed in 1366 milliseconds