/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/services/ |
service.py | 37 def __init__(self, config_file=None, mimetype_files=None): 38 super(Service, self).__init__(config_file) 41 self.sd = ServiceDef(config_file)
|
bs.py | 32 Usage = "usage: %prog [options] config_file command" 168 self.parser.error("config_file and command are required") 169 self.config_file = self.args[0] 170 self.sd = ServiceDef(self.config_file)
|
/external/google-breakpad/src/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/protobuf/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/vulkan-validation-layers/tests/gtest-1.7.0/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/autotest/client/common_lib/cros/ |
avahi_utils.py | 83 def avahi_start(config_file=None, host=None): 89 @param config_file: The filename of the avahi-daemon config file or None to 96 if config_file is not None: 97 env = ' AVAHI_DAEMON_CONF="%s"' % config_file 130 avahi_start(config_file=conf, host=host)
|
/external/autotest/client/cros/ |
network_chroot.py | 237 for config_file in self._copied_config_files: 238 src_path = os.path.join('/', config_file) 239 dst_path = self.chroot_path(config_file) 265 for config_file, template in self._config_file_templates.iteritems(): 266 with open(self.chroot_path(config_file), 'w') as f:
|
/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/vboot_reference/scripts/image_signing/ |
make_dev_ssd.sh | 76 local config_file 79 config_file="$mount_point/efi/boot/grub.cfg" 80 [ ! -f "$config_file" ] || 81 sudo sed -i 's/^ *set default=2 *$/set default=0/g' "$config_file" 82 config_file="$mount_point/syslinux/default.cfg" 83 [ ! -f "$config_file" ] || 84 sudo sed -i 's/-vusb/-usb/g; s/-vhd/-hd/g' "$config_file"
|
/external/autotest/client/tools/ |
boottool | 10 my $config_file='/boot/grub/menu.lst'; 12 $bootloader->read($config_file); 20 $bootloader->write($config_file); 133 $self->{config_file} = shift; 134 unless (defined $self->{'config_file'}){ 152 my $config_file=shift || $self->{config_file}; 153 print ("Reading $config_file.\n") if $self->debug()>1; 155 open(CONFIG, "$config_file") 156 || warn ("ERROR: Can't open $config_file.\n") && return undef [all...] |
/external/autotest/client/tests/kvm/ |
get_started.py | 89 for config_file in config_file_list: 90 src_file = config_file 91 dst_file = config_file.rstrip(".sample")
|
/external/dbus/tools/ |
dbus-launch.c | 824 char *config_file; local 827 config_file = NULL; 892 if (config_file != NULL) 901 config_file = xstrdup (file); 906 if (config_file != NULL) 912 config_file = xstrdup (arg); 1111 config_file ? "--config-file" : "--session", 1112 config_file, /* has to be last in this varargs list */ 1126 config_file ? "--config-file" : "--session", 1127 config_file, /* has to be last in this varargs list * [all...] |
/external/dbus/dbus/ |
dbus-sysdeps-win.h | 83 dbus_bool_t _dbus_get_config_file_name(DBusString *config_file,
|
/external/ppp/pppd/plugins/radius/ |
radius.c | 53 static char *config_file = NULL; variable 62 { "radius-config-file", o_string, &config_file }, 118 char config_file[MAXPATHLEN]; member in struct:radius_state 167 strlcpy(rstate.config_file, "/etc/radiusclient/radiusclient.conf", 168 sizeof(rstate.config_file)); [all...] |
/external/dbus/bus/ |
bus.c | 51 char *config_file; member in struct:BusContext 706 bus_context_new (const DBusString *config_file, 740 if (!_dbus_string_copy_data (config_file, &context->config_file)) 760 parser = bus_config_load (config_file, TRUE, NULL, error); 977 DBusString config_file; local 984 _dbus_string_init_const (&config_file, context->config_file); 985 parser = bus_config_load (&config_file, TRUE, NULL, error); 1118 dbus_free (context->config_file); [all...] |
bus.h | 76 BusContext* bus_context_new (const DBusString *config_file,
|
/external/toybox/toys/pending/ |
syslogd.c | 59 char *config_file; 187 if (!(fp = fopen(TT.config_file, "r")) && (toys.optflags & FLAG_f)) 188 perror_exit("can't open '%s'", TT.config_file); 201 error_msg("error in '%s' at line %d", TT.config_file, lineno); 216 error_msg("error in '%s' at line %d", TT.config_file, lineno); 417 TT.config_file = (toys.optflags & FLAG_f) ? 418 TT.config_file : "/etc/syslog.conf"; //DEFCONFFILE
|
/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...] |
/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/autotest/tko/perf_upload/ |
perf_uploader.py | 111 def _parse_config_file(config_file): 118 @param config_file: Path to the configuration file to be parsed. 128 if os.path.exists(config_file): 129 with open(config_file, 'r') as fp:
|
/external/mdnsresponder/mDNSPosix/ |
PosixDaemon.c | 60 #define CONFIG_FILE "/etc/mdnsd.conf" 102 ReadDDNSSettingsFromConfFile(m, CONFIG_FILE, &DynDNSHostname, &DynDNSZone, NULL);
|
/external/chromium-trace/catapult/third_party/coverage/coverage/ |
control.py | 61 auto_data=False, timid=None, branch=None, config_file=True, 86 `config_file` determines what configuration file to read: 125 if config_file: 129 if config_file == ".coveragerc": 130 config_file = True 131 specified_file = (config_file is not True) 133 config_file = ".coveragerc" 135 did_read_rc = self.config.from_file(config_file) 140 "Couldn't read '%s' as a config file" % config_file [all...] |
/external/autotest/frontend/afe/doctests/ |
001_rpc_test.txt | 436 kernel_list = [{'version': '2.6.18', 'config_file': u'my_kernel_config'}, {'version': '2.6.18-blah.rpm', 'config_file': None}, {'cmdline': 'foo bar', 'version': '2.6.26', 'config_file': u'my_kernel_config'}] 448 if kernel_info['config_file']: 449 testkernel.config(kernel_info['config_file']) 475 kernel_list = [{'version': '3.1.41', 'config_file': u'my_kernel_config'}] 487 if kernel_info['config_file']: 488 testkernel.config(kernel_info['config_file']) [all...] |
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/pyami/installers/ubuntu/ |
ebs.py | 104 def __init__(self, config_file=None): 105 super(EBSInstaller, self).__init__(config_file)
|
/system/connectivity/shill/ |
TESTING | 117 --args="config_file=wifi_vm_config" 123 --args="config_file=wifi_vm_config test_pat=035CheckWEPKeySyntax"
|