HomeSort by relevance Sort by last modified time
    Searched refs:conf (Results 26 - 50 of 673) sorted by null

12 3 4 5 6 7 8 91011>>

  /hardware/qcom/gps/msm8996/etc/
Android.mk 5 LOCAL_MODULE := gps.conf
9 LOCAL_SRC_FILES := gps.conf
  /prebuilts/go/darwin-x86/src/net/
dnsconfig_unix_test.go 20 name: "testdata/resolv.conf",
32 name: "testdata/domain-resolv.conf",
42 name: "testdata/search-resolv.conf",
52 name: "testdata/empty-resolv.conf",
61 name: "testdata/openbsd-resolv.conf",
75 conf := dnsReadConfig(tt.name)
76 if conf.err != nil {
77 t.Fatal(conf.err)
79 if !reflect.DeepEqual(conf, tt.want) {
80 t.Errorf("%s:\ngot: %+v\nwant: %+v", tt.name, conf, tt.want
    [all...]
dnsconfig_unix.go 7 // Read system DNS config from /etc/resolv.conf
22 err error // any error that occurs during open of resolv.conf
25 // See resolv.conf(5) on a Linux machine.
29 conf := &dnsConfig{
36 conf.servers = defaultNS
37 conf.err = err
38 return conf
52 if len(f) > 1 && len(conf.servers) < 3 { // small, but the standard limit
57 conf.servers = append(conf.servers, f[1]
    [all...]
  /prebuilts/go/linux-x86/src/net/
dnsconfig_unix_test.go 20 name: "testdata/resolv.conf",
32 name: "testdata/domain-resolv.conf",
42 name: "testdata/search-resolv.conf",
52 name: "testdata/empty-resolv.conf",
61 name: "testdata/openbsd-resolv.conf",
75 conf := dnsReadConfig(tt.name)
76 if conf.err != nil {
77 t.Fatal(conf.err)
79 if !reflect.DeepEqual(conf, tt.want) {
80 t.Errorf("%s:\ngot: %+v\nwant: %+v", tt.name, conf, tt.want
    [all...]
dnsconfig_unix.go 7 // Read system DNS config from /etc/resolv.conf
22 err error // any error that occurs during open of resolv.conf
25 // See resolv.conf(5) on a Linux machine.
29 conf := &dnsConfig{
36 conf.servers = defaultNS
37 conf.err = err
38 return conf
52 if len(f) > 1 && len(conf.servers) < 3 { // small, but the standard limit
57 conf.servers = append(conf.servers, f[1]
    [all...]
  /external/boringssl/src/crypto/conf/
conf.c 57 #include <openssl/conf.h>
93 CONF *NCONF_new(void *method) {
94 CONF *conf; local
100 conf = OPENSSL_malloc(sizeof(CONF));
101 if (conf == NULL) {
105 conf->data = lh_CONF_VALUE_new(conf_value_hash, conf_value_cmp);
106 if (conf->data == NULL) {
107 OPENSSL_free(conf);
    [all...]
  /external/chromium-trace/catapult/third_party/Paste/paste/
config.py 19 # configuration to itself? Probably the conf should become
26 def push_thread_config(self, conf):
28 Make ``conf`` the active configuration for this thread.
34 conf = make_conf()
35 dispatching_config.push_thread_config(conf)
39 dispatching_config.pop_thread_config(conf)
41 self._push_object(conf)
43 def pop_thread_config(self, conf=None):
45 Remove a thread-local configuration. If ``conf`` is given,
49 self._pop_object(conf)
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/
mesh.c 71 struct mesh_conf *conf; local
73 conf = os_zalloc(sizeof(struct mesh_conf));
74 if (!conf)
77 os_memcpy(conf->meshid, ssid->ssid, ssid->ssid_len);
78 conf->meshid_len = ssid->ssid_len;
81 conf->security |= MESH_CONF_SEC_AUTH |
84 conf->security |= MESH_CONF_SEC_NONE;
87 conf->mesh_pp_id = MESH_PATH_PROTOCOL_HWMP;
88 conf->mesh_pm_id = MESH_PATH_METRIC_AIRTIME;
89 conf->mesh_cc_id = 0
124 struct hostapd_config *conf; local
    [all...]
nfc_pw_token.c 49 wpa_s.conf = os_zalloc(sizeof(*wpa_s.conf));
50 if (wpa_s.conf == NULL)
69 printf("wps_nfc_dev_pw_id=%d\n", wpa_s.conf->wps_nfc_dev_pw_id);
70 print_bin("wps_nfc_dh_pubkey", wpa_s.conf->wps_nfc_dh_pubkey);
71 print_bin("wps_nfc_dh_privkey", wpa_s.conf->wps_nfc_dh_privkey);
72 print_bin("wps_nfc_dev_pw", wpa_s.conf->wps_nfc_dev_pw);
78 wpa_config_free(wpa_s.conf);
wpa_supplicant_conf.mk 8 # Include this makefile to generate your hardware specific wpa_supplicant.conf
16 LOCAL_MODULE := wpa_supplicant.conf
23 WPA_SUPPLICANT_CONF_TEMPLATE := $(LOCAL_PATH)/wpa_supplicant_template.conf
29 @echo Target wpa_supplicant.conf: $@
  /device/intel/edison/base_product/
edison.mk 26 device/intel/edison/base_product/weaved.conf:system/etc/weaved/weaved.conf
  /system/bt/conf/
Android.mk 3 # Bluetooth bt_stack.conf config file
6 LOCAL_MODULE := bt_stack.conf
13 # Bluetooth bt_did.conf config file
16 LOCAL_MODULE := bt_did.conf
  /external/avahi/avahi-dnsconfd/
avahi-dnsconfd.action 72 test -f /etc/resolv.conf.avahi && mv /etc/resolv.conf.avahi /etc/resolv.conf
74 test -f /etc/resolv.conf.avahi || mv /etc/resolv.conf /etc/resolv.conf.avahi
78 done > /etc/resolv.conf
  /external/boringssl/src/include/openssl/
conf.h 80 * Config files are representated by a |CONF|. */
93 /* NCONF_new returns a fresh, empty |CONF|, or NULL on error. The |method|
95 CONF *NCONF_new(void *method);
97 /* NCONF_free frees all the data owned by |conf| and then |conf| itself. */
98 void NCONF_free(CONF *conf);
101 * |conf|. It returns one on success and zero on error. In the event of an
104 int NCONF_load(CONF *conf, const char *filename, long *out_error_line)
    [all...]
  /external/wpa_supplicant_8/src/ap/
hw_features.c 154 if (iface->conf->basic_rates)
155 basic_rates = iface->conf->basic_rates;
196 if (iface->conf->supported_rates &&
197 !hostapd_rate_found(iface->conf->supported_rates,
213 (!iface->conf->ieee80211n || !iface->conf->require_ht)) {
229 if (!iface->conf->secondary_channel)
232 pri_chan = iface->conf->channel;
233 sec_chan = pri_chan + iface->conf->secondary_channel * 4;
242 if (iface->conf->secondary_channel > 0)
517 u16 conf = iface->conf->ht_capab; local
663 u32 conf = iface->conf->vht_capab; local
    [all...]
hostapd.c 77 radius_client_reconfig(hapd->radius, hapd->conf->radius);
80 ssid = &hapd->conf->ssid;
87 hostapd_config_clear_wpa_psk(&hapd->conf->ssid.wpa_psk);
89 if (hostapd_setup_wpa_psk(hapd->conf)) {
94 if (hapd->conf->ieee802_1x || hapd->conf->wpa)
95 hostapd_set_drv_ieee8021x(hapd, hapd->conf->iface, 1);
97 hostapd_set_drv_ieee8021x(hapd, hapd->conf->iface, 0);
99 if ((hapd->conf->wpa || hapd->conf->osen) && hapd->wpa_auth == NULL)
886 struct hostapd_bss_config *conf = hapd->conf; local
1191 struct hostapd_config *conf = hapd->iconf; local
1945 struct hostapd_config *conf = NULL; local
2045 struct hostapd_config *conf; local
2303 struct hostapd_config *conf; local
2389 struct hostapd_config *conf = NULL; local
    [all...]
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 *
  /external/autotest/client/common_lib/
global_config_unittest.py 75 conf = global_config.global_config variable in class:global_config_test
84 self.conf.set_config_files(self.global_temp.name, self.shadow_temp.name,
93 self.conf.set_config_files(global_config.DEFAULT_CONFIG_FILE,
100 val = self.conf.get_config_value("SECTION_A", "value_1", float)
107 val = self.conf.get_config_value("SECTION_B", "value_1", int)
110 val = self.conf.get_config_value("SECTION_B", "value_3", int)
112 val = self.conf.get_config_value("SECTION_B", "value_4", int)
118 val = self.conf.get_config_value("SECTION_A", "value_2")
137 self.conf.reset_config_values()
140 val = self.conf.get_config_value("SECTION_C", "value_1"
    [all...]
  /external/toybox/kconfig/
Makefile 14 config: $(obj)/conf $(KCONFIG_TOP)
17 oldconfig: $(obj)/conf $(KCONFIG_TOP)
20 silentoldconfig: $(obj)/conf $(KCONFIG_TOP)
23 randconfig: $(obj)/conf $(KCONFIG_TOP)
26 allyesconfig: $(obj)/conf $(KCONFIG_TOP)
29 allnoconfig: $(obj)/conf $(KCONFIG_TOP)
32 defconfig: $(obj)/conf $(KCONFIG_TOP)
64 kconfig/conf: $(SHIPPED)
65 $(HOSTCC) -o $@ kconfig/conf.c kconfig/zconf.tab.c -DKBUILD_NO_NLS=1 \
69 rm -f $(wildcard kconfig/*zconf*.c) kconfig/conf kconfig/mcon
    [all...]
  /external/mesa3d/src/egl/main/
eglconfig.c 57 _eglInitConfig(_EGLConfig *conf, _EGLDisplay *dpy, EGLint id)
59 memset(conf, 0, sizeof(*conf));
61 conf->Display = dpy;
64 conf->ConfigID = id;
65 conf->ConfigCaveat = EGL_NONE;
66 conf->TransparentType = EGL_NONE;
67 conf->NativeVisualType = EGL_NONE;
68 conf->ColorBufferType = EGL_RGB_BUFFER;
79 _eglLinkConfig(_EGLConfig *conf)
105 _EGLConfig *conf; local
821 _EGLConfig *conf = (_EGLConfig *) elem; local
    [all...]
  /external/mesa3d/src/gallium/include/state_tracker/
drm_driver.h 99 const struct drm_conf_ret *(*configuration) (enum drm_conf conf);
107 #define DRM_DRIVER_DESCRIPTOR(name_str, driver_name_str, func, conf) \
112 .configuration = (conf), \
  /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
235 final Call conf = mInCallService.getLastConferenceCall(); local
257 final Call conf = mInCallService.getLastConferenceCall(); local
278 final Call conf = mInCallService.getLastConferenceCall(); local
299 final Call conf = mInCallService.getLastConferenceCall(); local
327 final Call conf = mInCallService.getLastConferenceCall(); local
343 final Call conf = mInCallService.getLastConferenceCall(); local
368 final Call conf = mInCallService.getLastConferenceCall(); local
    [all...]
  /external/selinux/libsemanage/src/
conf-parse.y 34 extern int semanage_lex(void); /* defined in conf-scan.c */
35 extern int semanage_lex_destroy(void); /* defined in conf-scan.c */
338 static int semanage_conf_init(semanage_conf_t * conf)
340 conf->store_type = SEMANAGE_CON_DIRECT;
341 conf->store_path = strdup(basename(selinux_policy_root()));
342 conf->ignoredirs = NULL;
343 conf->store_root_path = strdup("/var/lib/selinux");
344 conf->compiler_directory_path = strdup("/usr/libexec/selinux/hll");
345 conf->policyvers = sepol_policy_kern_vers_max();
346 conf->target_platform = SEPOL_TARGET_SELINUX
    [all...]
  /device/moto/shamu/location/
Android.mk 3 #only /etc/gps.conf to begin with
  /external/mesa3d/src/gallium/targets/dri-r600/
target.c 29 static const struct drm_conf_ret *drm_configuration(enum drm_conf conf)
31 switch (conf) {

Completed in 712 milliseconds

12 3 4 5 6 7 8 91011>>