/external/chromium_org/tools/perf_expectations/ |
PRESUBMIT.py | 12 CONFIG_FILE = 'tools/perf_expectations/chromium_perf_expectations.cfg' 17 if (PERF_EXPECTATIONS == path or CONFIG_FILE == path): 31 if (PERF_EXPECTATIONS == path or CONFIG_FILE == path):
|
/external/chromium_org/base/third_party/xdg_user_dirs/ |
xdg_user_dir_lookup.cc | 52 char *home_dir, *config_home, *config_file; local 67 config_file = (char*) malloc (strlen (home_dir) + strlen ("/.config/user-dirs.dirs") + 1); 68 if (config_file == NULL) 71 strcpy (config_file, home_dir); 72 strcat (config_file, "/.config/user-dirs.dirs"); 76 config_file = (char*) malloc (strlen (config_home) + strlen ("/user-dirs.dirs") + 1); 77 if (config_file == NULL) 80 strcpy (config_file, config_home); 81 strcat (config_file, "/user-dirs.dirs"); 84 file = fopen (config_file, "r") [all...] |
/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/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/ |
checksvnconfigfile.py | 42 config_file = fs.read_text_file(cfg_file_path) 46 errorcode_autoprop = not re.search("^\s*enable-auto-props\s*=\s*yes", config_file, re.MULTILINE) 47 errorcode_png = not re.search("^\s*\*\.png\s*=\s*svn:mime-type=image/png", config_file, re.MULTILINE)
|
/external/chromium_org/remoting/host/installer/mac/PrivilegedHelperTools/ |
org.chromium.chromoting.me2me.sh | 14 CONFIG_FILE=$CONFIG_DIR/$NAME.json 85 "$HOST_EXE" --host-config="$CONFIG_FILE" & 139 rm -f "$CONFIG_FILE" 141 cat > "$CONFIG_FILE" 143 chmod +a "$USER:allow:read" "$CONFIG_FILE" 147 cat > "$CONFIG_FILE"
|
/hardware/libhardware_legacy/wifi/ |
wifi.c | 321 int update_ctrl_interface(const char *config_file) { 331 if (stat(config_file, &sb) != 0) 337 srcfd = TEMP_FAILURE_RETRY(open(config_file, O_RDONLY)); 339 ALOGE("Cannot open \"%s\": %s", config_file, strerror(errno)); 346 ALOGE("Cannot read \"%s\": %s", config_file, strerror(errno)); 351 if (!strcmp(config_file, SUPP_CONFIG_FILE)) { 384 destfd = TEMP_FAILURE_RETRY(open(config_file, O_RDWR, 0660)); 386 ALOGE("Cannot update \"%s\": %s", config_file, strerror(errno)); 399 int ensure_config_file_exists(const char *config_file) 407 ret = access(config_file, R_OK|W_OK) [all...] |
/external/chromium_org/remoting/host/setup/ |
daemon_controller_delegate_linux.cc | 197 JsonHostConfig config_file(GetConfigPath()); 198 if (!config_file.CopyFrom(config.get()) || 199 !config_file.Save()) { 218 JsonHostConfig config_file(GetConfigPath()); 219 if (!config_file.Read() || 220 !config_file.CopyFrom(config.get()) || 221 !config_file.Save()) {
|
daemon_controller_delegate_mac.mm | 83 JsonHostConfig config_file(config_file_path); 84 if (!config_file.Read()) { 88 if (!config_file.CopyFrom(config.get())) { 94 std::string config_data = config_file.GetSerializedData();
|
/external/dnsmasq/contrib/webmin/ |
dnsmasq.wbm | 1 dnsmasq/ 0000755 0000000 0000000 00000000000 10512645440 011223 5 ustar root root dnsmasq/config.info 0000644 0000000 0000000 00000000132 10505663743 013351 0 ustar root root config_file=Full path to DNSmasq config file,0 3 dnsmasq/config 0000644 0000000 0000000 00000000061 10505663767 012426 0 ustar root root config_file=/etc/dnsmasq.conf 84 $config_file = &read_file_lines( $config{config_file} ); 92 &parse_config_file( \%config, \$config_file ); [all...] |
/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/grub/stage2/ |
stage1_5.c | 39 if (grub_open (config_file))
|
/external/ppp/pppd/plugins/radius/ |
options.h | 39 {"config_file", OT_STR, ST_UNDEF, NULL},
|
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/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';
|
/external/libvpx/libvpx/build/make/ |
rtcd.sh | 39 --config=*) config_file=${optval};; 56 [ -f "$config_file" ] && eval $(grep CONFIG_ "$config_file") 341 dspr2=$([ -f "$config_file" ] && eval echo $(grep HAVE_DSPR2 "$config_file"))
|
/external/chromium_org/chrome/browser/policy/test/ |
local_policy_test_server.h | 32 // |config_file|. 33 explicit LocalPolicyTestServer(const base::FilePath& config_file);
|
/external/chromium_org/components/policy/core/common/ |
config_dir_policy_loader.cc | 107 for (base::FilePath config_file = file_enumerator.Next(); 108 !config_file.empty(); 109 config_file = file_enumerator.Next()) { 110 if (base::GetFileInfo(config_file, &info) && !info.is_directory)
|
/external/chromium_org/remoting/host/policy_hack/ |
policy_watcher_linux.cc | 115 for (base::FilePath config_file = file_enumerator.Next(); 116 !config_file.empty(); 117 config_file = file_enumerator.Next()) { 118 if (base::GetFileInfo(config_file, &file_info) &&
|
/external/grub/docs/ |
grub.8 | 18 specify stage2 config_file [default=/boot/grub/menu.lst]
|
/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/chromium_org/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()
|
/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);
|
/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/chromium_org/remoting/host/installer/mac/Scripts/ |
remoting_preflight.sh | 11 CONFIG_FILE="$HELPERTOOLS/$SERVICE_NAME.json"
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/servers/ |
http_server_unittest.py | 58 config_file = host.filesystem.read_text_file("/mock/output_dir/lighttpd.conf") 59 self.assertEqual(re.findall(r"alias.url.+", config_file), [
|