HomeSort by relevance Sort by last modified time
    Searched refs:config_file (Results 1 - 25 of 29) sorted by null

1 2

  /external/chromium/testing/gtest/xcode/Scripts/
versiongenerate.py 64 config_file = open("%s/configure.ac" % input_dir, 'r') variable
66 opening_string = config_file.read(buffer_size)
67 config_file.close()
  /external/libvpx/libvpx/third_party/googletest/src/xcode/Scripts/
versiongenerate.py 64 config_file = open("%s/configure.ac" % input_dir, 'r') variable
66 opening_string = config_file.read(buffer_size)
67 config_file.close()
  /external/protobuf/gtest/xcode/Scripts/
versiongenerate.py 35 config_file = open("%s/configure.ac" % input_dir, 'r') variable
37 opening_string = config_file.read(buffer_size)
38 config_file.close()
  /external/chromium/chrome/browser/policy/
config_dir_policy_provider.cc 67 for (FilePath config_file = file_enumerator.Next();
68 !config_file.empty();
69 config_file = file_enumerator.Next()) {
70 if (file_util::GetFileInfo(config_file, &file_info) &&
  /external/grub/stage2/
stage1_5.c 39 if (grub_open (config_file))
stage2.c 595 char *new_file = config_file;
884 grub_strncat (default_file, config_file, DEFAULT_FILE_BUFLEN);
923 is_opened = grub_open (config_file);
shared.h 560 extern char config_file[];
builtins.c 354 configfile_func (config_file, flags);
708 char *new_config = config_file;
716 /* Copy ARG to CONFIG_FILE. */
    [all...]
  /hardware/libhardware_legacy/wifi/
wifi.c 337 int update_ctrl_interface(const char *config_file) {
347 if (stat(config_file, &sb) != 0)
353 srcfd = TEMP_FAILURE_RETRY(open(config_file, O_RDONLY));
355 ALOGE("Cannot open \"%s\": %s", config_file, strerror(errno));
362 ALOGE("Cannot read \"%s\": %s", config_file, strerror(errno));
367 if (!strcmp(config_file, SUPP_CONFIG_FILE)) {
400 destfd = TEMP_FAILURE_RETRY(open(config_file, O_RDWR, 0660));
402 ALOGE("Cannot update \"%s\": %s", config_file, strerror(errno));
415 int ensure_config_file_exists(const char *config_file)
423 ret = access(config_file, R_OK|W_OK)
    [all...]
  /external/grub/grub/
main.c 105 --config-file=FILE specify stage2 config_file [default=%s]\n\
143 if (config_file)
144 default_config_file = config_file;
175 strncpy (config_file, optarg, 127); /* FIXME: arbitrary */
176 config_file[127] = '\0';
asmstub.c 74 char config_file[128] = "/boot/grub/menu.lst"; /* FIXME: arbitrary */ variable
  /external/libvpx/libvpx/build/make/
rtcd.sh 39 --config=*) config_file=${optval};;
56 [ -f "$config_file" ] && eval $(grep CONFIG_ "$config_file")
334 dspr2=$([ -f "$config_file" ] && eval echo $(grep HAVE_DSPR2 "$config_file"))
  /hardware/ti/omap3/omx/system/src/openmax_il/perf/src/
perf_config.c 178 FILE *config_file = NULL; local
185 config_file = fopen(PERF_CONFIG_FILE, "rt");
186 if (config_file)
189 while (fgets(line, PERF_CONFIG_LINELENGTH, config_file))
216 fclose(config_file);
  /external/linux-tools-perf/util/
config.c 19 static FILE *config_file; variable
32 if ((f = config_file) != NULL) {
364 config_file = f;
  /external/webkit/Tools/wx/build/
build_utils.py 170 config_file = os.path.join(wk_root, 'WebKitBuild', 'Configuration')
173 if os.path.exists(config_file):
174 config = open(config_file).read()
  /system/extras/tests/fstest/
perm_checker.c 46 static char *config_file; variable
187 add_rule(-1, config_file,
415 config_file = (argc == 2) ? argv[1] : DEFAULT_CONFIG_FILE;
422 if (!(fp = fopen(config_file, "r"))) {
423 printf("Error opening %s\n", config_file);
  /external/ppp/pppd/plugins/radius/
radius.c 51 static char *config_file = NULL; variable
60 { "radius-config-file", o_string, &config_file },
116 char config_file[MAXPATHLEN]; member in struct:radius_state
165 strlcpy(rstate.config_file, "/etc/radiusclient/radiusclient.conf",
166 sizeof(rstate.config_file));
    [all...]
  /external/sonivox/jet_tools/JetCreator/
JetFile.py 250 def __init__ (self, config_file, options):
251 self.config_file = config_file
253 if self.config_file == "":
255 if not FileExists(self.config_file):
256 self.InitializeConfig(self.config_file)
258 config.read(self.config_file)
279 config.filename = FileJustRoot(self.config_file) + ".JET"
736 self.config_file = configFile
    [all...]
JetUtils.py 756 tmpConfigFile = dirname + FileJustName(org_jet_file.config_file)
764 jet_file.config_file = tmpConfigFile
776 FileKillClean(jet_file.config_file)
  /hardware/ti/omap3/omx/system/src/openmax_il/common/inc/
OMX_TI_Debug.h 195 char *config_file = getenv("OMX_DBG_CONFIG"); \
196 FILE *config = (config_file && *config_file) ? fopen(config_file, "rt") : NULL; \
  /external/wpa_supplicant_8/wpa_supplicant/
nmake.mak 137 $(OBJDIR)\config_file.obj $(OBJDIR)\base64.obj
141 $(OBJDIR)\config_file.obj $(OBJDIR)\base64.obj
144 $(OBJDIR)\config_file.obj \
  /external/wpa_supplicant_8/hostapd/
main.c 26 #include "config_file.h"
152 * @config_file: Path to the configuration file
159 static struct hostapd_iface * hostapd_init(const char *config_file)
170 hapd_iface->config_fname = os_strdup(config_file);
  /external/chromium-trace/trace-viewer/examples/stream_server/
standalone.py 700 parser.add_option('--config', dest='config_file', type='string',
    [all...]
  /external/chromium-trace/trace-viewer/third_party/pywebsocket/src/mod_pywebsocket/
standalone.py 696 parser.add_option('--config', dest='config_file', type='string',
    [all...]
  /external/grub/netboot/
main.c 1071 of CONFIG_FILE. This kind of robustness will be a goal
1073 grub_memmove (config_file, p + 2, l);
1074 config_file[l] = 0;

Completed in 1163 milliseconds

1 2