HomeSort by relevance Sort by last modified time
    Searched defs:conf (Results 1 - 25 of 184) sorted by null

1 2 3 4 5 6 7 8

  /external/python/cpython2/PC/VS8.0/
build.bat 7 set conf=Release variable
11 if "%1"=="-c" (set conf=%2) & shift & shift & goto CheckOpts variable
15 set cmd=devenv pcbuild.sln %build% "%conf%|%platf%"
  /system/sepolicy/
definitions.mk 1 # Command to turn collection of policy files into a policy.conf file to be
3 define transform-policy-to-conf
16 .KATI_READONLY := transform-policy-to-conf
  /external/testng/src/test/java/test/multiplelisteners/
SimpleReporter.java 26 final IConfiguration conf = (IConfiguration) field.get(iSuite); local
27 ListenerAssert.assertListenerType(conf.getConfigurationListeners(), TestListenerAdapter.class);
  /external/adhd/cras/src/tests/
audio_test_gui.py 261 conf = { variable in class:CrasRouterTest
266 cherrypy.quickstart(CrasRouterTest(), '/', conf)
  /external/lisa/experiments/
run_binder_transaction_tracing.py 29 conf = { variable
50 'conf': { }
62 te = TestEnv(conf, wipe=False)
103 te, os.path.join(te.res_dir, 'trace.html'), conf=conf)
run_binder_throughput.py 20 from conf import LisaLogging
30 conf = { variable
51 'conf': { }
61 te = TestEnv(conf, wipe=False)
  /external/lisa/libs/wlgen/wlgen/
perf_bench.py 47 def conf(self, member in class:PerfMessaging
62 super(PerfMessaging, self).conf(
139 def conf(self, member in class:PerfPipe
145 super(PerfPipe, self).conf('custom',
workload.py 30 To use this class, you'll need to instantiate it, then call :meth:`conf` on
134 def conf(self, member in class:Workload
rta.py 121 rta.conf(kind='profile',
247 conf = json.load(f)
248 for tid in conf['tasks']:
421 def conf(self, member in class:RTA
453 wl.conf(kind='profile', params={'t1': Periodic().get()})
477 super(RTA, self).conf(kind, params, duration,
501 Base class for conveniently constructing params to :meth:`RTA.conf`
516 to :meth:`RTA.conf`.
  /external/wpa_supplicant_8/src/ap/
bss_load.c 45 struct hostapd_bss_config *conf = hapd->conf; local
49 if (!conf->bss_load_update_period || !iconf->beacon_int)
52 hapd->bss_load_update_timeout = conf->bss_load_update_period *
hs20.c 22 u8 conf; local
23 if (!hapd->conf->hs20)
30 conf = HS20_VERSION; /* Release Number */
31 conf |= HS20_ANQP_DOMAIN_ID_PRESENT;
32 if (hapd->conf->disable_dgaf)
33 conf |= HS20_DGAF_DISABLED;
34 *eid++ = conf;
35 WPA_PUT_LE16(eid, hapd->conf->anqp_domain_id);
47 if (!hapd->conf->osen)
74 if (hapd->conf->wmm_enabled)
    [all...]
x_snoop.c 20 struct hostapd_bss_config *conf = hapd->conf; local
22 if (!conf->isolate) {
28 if (conf->bridge[0] == '\0') {
72 struct hostapd_bss_config *conf = hapd->conf; local
75 l2 = l2_packet_init(conf->bridge, NULL, ETH_P_ALL, handler, hapd, 1);
authsrv.c 99 struct hostapd_bss_config *conf = hapd->conf; local
101 srv.client_file = conf->radius_server_clients;
102 srv.auth_port = conf->radius_server_auth_port;
103 srv.acct_port = conf->radius_server_acct_port;
108 srv.pac_opaque_encr_key = conf->pac_opaque_encr_key;
109 srv.eap_fast_a_id = conf->eap_fast_a_id;
110 srv.eap_fast_a_id_len = conf->eap_fast_a_id_len;
111 srv.eap_fast_a_id_info = conf->eap_fast_a_id_info;
112 srv.eap_fast_prov = conf->eap_fast_prov
155 struct tls_config conf; local
    [all...]
eap_user_db.c 176 if (sqlite3_open(hapd->conf->eap_user_sqlite, &db)) {
178 hapd->conf->eap_user_sqlite, sqlite3_errmsg(db));
191 sqlite3_errmsg(db), hapd->conf->eap_user_sqlite);
204 hapd->conf->eap_user_sqlite);
227 const struct hostapd_bss_config *conf = hapd->conf; local
228 struct hostapd_eap_user *user = conf->eap_user;
231 if (conf->wps_state && identity_len == WSC_ID_ENROLLEE_LEN &&
240 if (conf->wps_state && identity_len == WSC_ID_REGISTRAR_LEN &&
246 wsc_registrar.password = (u8 *) conf->ap_pin
    [all...]
  /external/libcups/cups/
getifaddrs.c 33 struct ifconf conf; /* Interface configurations */ local
62 conf.ifc_len = sizeof(buffer);
63 conf.ifc_buf = buffer;
65 if (ioctl(sock, SIOCGIFCONF, &conf) < 0)
86 for (bufptr = buffer, bufend = buffer + conf.ifc_len;
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
RunInLocale.java 38 final Configuration conf = res.getConfiguration(); local
39 if (newLocale == null || newLocale.equals(conf.locale)) {
42 final Locale savedLocale = conf.locale;
44 conf.locale = newLocale;
45 res.updateConfiguration(conf, null);
48 conf.locale = savedLocale;
49 res.updateConfiguration(conf, null);
  /prebuilts/go/darwin-x86/src/net/
conf.go 16 // conf represents a system's network configuration.
17 type conf struct { type
36 confVal = &conf{goos: runtime.GOOS}
40 func systemConf() *conf {
88 // OpenBSD apparently lets you override the location of resolv.conf
96 confVal.nss = parseNSSConfFile("/etc/nsswitch.conf")
99 confVal.resolv = dnsReadConfig("/etc/resolv.conf")
102 // If we can't read the resolv.conf file, assume it
116 func (c *conf) canUseCgo() bool {
121 func (c *conf) hostLookupOrder(hostname string) (ret hostLookupOrder)
    [all...]
  /prebuilts/go/linux-x86/src/net/
conf.go 16 // conf represents a system's network configuration.
17 type conf struct { type
36 confVal = &conf{goos: runtime.GOOS}
40 func systemConf() *conf {
88 // OpenBSD apparently lets you override the location of resolv.conf
96 confVal.nss = parseNSSConfFile("/etc/nsswitch.conf")
99 confVal.resolv = dnsReadConfig("/etc/resolv.conf")
102 // If we can't read the resolv.conf file, assume it
116 func (c *conf) canUseCgo() bool {
121 func (c *conf) hostLookupOrder(hostname string) (ret hostLookupOrder)
    [all...]
  /external/autotest/client/common_lib/
global_config_unittest.py 76 conf = global_config.global_config variable in class:global_config_test
85 self.conf.set_config_files(self.global_temp.name, self.shadow_temp.name,
94 self.conf.set_config_files(global_config.DEFAULT_CONFIG_FILE,
101 val = self.conf.get_config_value("SECTION_A", "value_1", float)
108 val = self.conf.get_config_value("SECTION_B", "value_1", int)
111 val = self.conf.get_config_value("SECTION_B", "value_3", int)
113 val = self.conf.get_config_value("SECTION_B", "value_4", int)
119 val = self.conf.get_config_value("SECTION_A", "value_2")
138 self.conf.reset_config_values()
141 val = self.conf.get_config_value("SECTION_C", "value_1"
    [all...]
  /external/iproute2/tc/
em_canid.c 151 struct can_filter *conf = data; /* Array with rules */ local
158 struct can_filter *pcfltr = &conf[i];
  /external/python/cpython2/PC/VS9.0/
build.bat 17 set conf=Release variable
24 if '%1'=='-c' (set conf=%2) & shift & shift & goto CheckOpts variable
33 if '%1'=='-d' (set conf=Debug) & shift & goto CheckOpts variable
37 if '%conf%'=='Debug' (set dbg_ext=_d) else (set dbg_ext=)
54 vcbuild "%dir%kill_python.vcproj" "%conf%|%platf%" && "%builddir%kill_python%dbg_ext%.exe"
66 if '%conf%'=='Debug' (
107 vcbuild "%dir%pcbuild.sln" %target% "%conf%|%platf%" %1 %2 %3 %4 %5 %6 %7 %8 %9
  /external/python/cpython2/PCbuild/
build.bat 51 set conf=Release variable
66 if "%~1"=="-c" (set conf=%2) & shift & shift & goto CheckOpts variable
70 if "%~1"=="-d" (set conf=Debug) & shift & goto CheckOpts variable
113 set conf=PGInstrument variable
121 set conf=PGUpdate variable
128 /p:Configuration=%conf% /p:Platform=%platf%^
140 /p:Configuration=%conf% /p:Platform=%platf%^
  /cts/tests/tests/telecom/src/android/telecom/cts/
ConferenceTest.java 76 final Call conf = mInCallService.getLastConferenceCall(); local
77 assertCallState(conf, Call.STATE_ACTIVE);
79 if (mCall1.getParent() != conf || mCall2.getParent() != conf) {
82 if (!(conf.getChildren().contains(mCall1) && conf.getChildren().contains(mCall2))) {
96 final Call conf = mInCallService.getLastConferenceCall(); local
97 assertCallState(conf, Call.STATE_ACTIVE);
99 if (!(mCall1.getParent() == conf) && (conf.getChildren().contains(mCall1)))
116 final Call conf = mInCallService.getLastConferenceCall(); local
134 final Call conf = mInCallService.getLastConferenceCall(); local
159 final Call conf = mInCallService.getLastConferenceCall(); local
239 final Call conf = mInCallService.getLastConferenceCall(); local
261 final Call conf = mInCallService.getLastConferenceCall(); local
285 final Call conf = mInCallService.getLastConferenceCall(); local
308 final Call conf = mInCallService.getLastConferenceCall(); local
341 final Call conf = mInCallService.getLastConferenceCall(); local
359 final Call conf = mInCallService.getLastConferenceCall(); local
384 final Call conf = mInCallService.getLastConferenceCall(); local
    [all...]
  /external/jcommander/src/test/java/com/beust/jcommander/
FinderTest.java 26 ConfigureArgs conf = new ConfigureArgs(); local
28 jc.addCommand(conf);
  /external/libxml2/
check-xinclude-test-suite.py 13 CONF="testdescr.xml"
188 conf = libxml2.parseFile(CONF) variable
189 if conf == None:
190 print "Unable to load %s" % CONF
193 testsuite = conf.getRootElement()
217 conf.freeDoc()

Completed in 775 milliseconds

1 2 3 4 5 6 7 8