HomeSort by relevance Sort by last modified time
    Searched refs:conf (Results 151 - 175 of 586) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/autotest/client/cros/cellular/wardmodem/
modem_configuration.py 13 DEFAULT_CONF_FILE = 'base.conf'
15 'e362': 'e362.conf',
48 # Now load the plugin conf data.
166 @return The conf data loaded from file.
176 conf = {}
177 execfile(full_path, conf)
179 del conf['__builtins__']
180 return conf
  /external/autotest/frontend/tko/
urls.py 1 from django.conf.urls import defaults
  /external/icu/android_icu4j/src/main/java/android/icu/text/
CharsetMatch.java 179 CharsetMatch(CharsetDetector det, CharsetRecognizer rec, int conf) {
180 fConfidence = conf;
199 CharsetMatch(CharsetDetector det, CharsetRecognizer rec, int conf, String csName, String lang) {
200 fConfidence = conf;
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
CharsetMatch.java 191 CharsetMatch(CharsetDetector det, CharsetRecognizer rec, int conf) {
192 fConfidence = conf;
211 CharsetMatch(CharsetDetector det, CharsetRecognizer rec, int conf, String csName, String lang) {
212 fConfidence = conf;
  /external/selinux/libsemanage/src/
semanage_conf.h 68 void semanage_conf_destroy(semanage_conf_t * conf);
  /external/selinux/policycoreutils/restorecond/
Makefile 37 install -m 644 restorecond.conf $(SELINUXDIR)/restorecond.conf
38 install -m 644 restorecond_user.conf $(SELINUXDIR)/restorecond_user.conf
  /external/wpa_supplicant_8/hostapd/
main.c 56 if (hapd && hapd->conf) {
57 conf_syslog_level = hapd->conf->logger_syslog_level;
58 conf_stdout_level = hapd->conf->logger_stdout_level;
59 conf_syslog = hapd->conf->logger_syslog;
60 conf_stdout = hapd->conf->logger_stdout;
93 if (hapd && hapd->conf && addr)
95 hapd->conf->iface, MAC2STR(addr),
98 else if (hapd && hapd->conf)
100 hapd->conf->iface, module_str ? " " : "",
154 struct hostapd_bss_config *conf = hapd->conf local
    [all...]
  /system/sepolicy/
Android.mk 89 sepolicy_policy.conf := $(intermediates)/policy.conf
90 $(sepolicy_policy.conf): PRIVATE_MLS_SENS := $(MLS_SENS)
91 $(sepolicy_policy.conf): PRIVATE_MLS_CATS := $(MLS_CATS)
92 $(sepolicy_policy.conf): PRIVATE_ADDITIONAL_M4DEFS := $(LOCAL_ADDITIONAL_M4DEFS)
93 $(sepolicy_policy.conf): $(call build_policy, $(sepolicy_build_files))
101 $(LOCAL_BUILT_MODULE): $(sepolicy_policy.conf) $(HOST_OUT_EXECUTABLES)/checkpolicy $(HOST_OUT_EXECUTABLES)/sepolicy-analyze
116 sepolicy_policy.conf :=
127 sepolicy_policy_recovery.conf := $(intermediates)/policy_recovery.conf
    [all...]
  /external/ltrace/testsuite/ltrace.main/
parameters2.exp 23 ltraceMatch1 [ltraceRun -L -F [ltraceSource conf {
29 ltraceMatch1 [ltraceRun -L -F [ltraceSource conf {
34 ltraceMatch1 [ltraceRun -L -F [ltraceSource conf {
39 ltraceMatch1 [ltraceRun -L -F [ltraceSource conf {
44 ltraceMatch1 [ltraceRun -L -F [ltraceSource conf {
50 ltraceMatch1 [ltraceRun -L -F [ltraceSource conf {
56 ltraceMatch1 [ltraceRun -L -F [ltraceSource conf {
65 set conf [ltraceSource conf {
71 ltraceMatch [ltraceRun -F $conf -e ll [ltraceCompile {} $libll [ltraceSource c
    [all...]
  /external/parameter-framework/upstream/parameter/
DomainConfiguration.cpp 264 [](const string &a, const AreaConfiguration &conf) {
265 return a + conf->getConfigurableElement()->getPath() + "\n";
316 [&](const AreaConfiguration &conf) {
317 return conf != nullptr &&
318 conf->getConfigurableElement() == pConfigurableElement;
340 [&](bool accumulator, const AreaConfiguration &conf) {
341 return conf->restore(pMainBlackboard, bSync, errors) && accumulator;
454 [&](const AreaConfiguration &conf) {
455 return conf->getConfigurableElement() == pConfigurableElement;
468 [&](const AreaConfiguration &conf) {
    [all...]
  /external/mesa3d/src/egl/drivers/glx/
egl_glx.c 176 GLX_egl_config_index(_EGLConfig *conf)
178 struct GLX_egl_config *GLX_conf = GLX_egl_config(conf);
436 _EGLConfig *conf = &GLX_conf->Base; local
440 conf->SurfaceType &= ~EGL_WINDOW_BIT;
443 conf->SurfaceType |= EGL_PBUFFER_BIT;
447 if (!(conf->SurfaceType & EGL_WINDOW_BIT)) {
448 conf->NativeVisualID = 0;
449 conf->NativeVisualType = EGL_NONE;
452 if (conf->TransparentType != EGL_TRANSPARENT_RGB) {
454 conf->TransparentRedValue = 0
    [all...]
  /external/wpa_supplicant_8/src/ap/
sta_info.c 373 hapd->conf->iface, __func__, MAC2STR(sta->addr), sta->flags,
404 next_time = hapd->conf->ap_max_inactivity + fuzz;
413 } else if (inactive_sec < hapd->conf->ap_max_inactivity) {
419 next_time = hapd->conf->ap_max_inactivity + fuzz -
426 hapd->conf->ap_max_inactivity);
428 if (hapd->conf->skip_inactivity_poll)
436 !hapd->conf->skip_inactivity_poll) {
442 next_time = hapd->conf->ap_max_inactivity;
538 hapd->conf->iface, MAC2STR(sta->addr));
598 MACSTR, hapd->conf->iface, MAC2STR(sta->addr))
    [all...]
  /external/tlsdate/src/
tlsdated.c 38 #include "src/conf.h"
264 parse_source (struct opts *opts, struct conf_entry *conf)
276 assert (!strcmp (conf->key, "source"));
277 conf = conf->next;
278 while (conf && strcmp (conf->key, "end"))
280 if (!strcmp (conf->key, "host"))
281 host = conf->value;
282 else if (!strcmp (conf->key, "port")
302 struct conf_entry *conf, *e; local
    [all...]
  /build/target/board/generic_arm64/
device.mk 26 device/generic/goldfish/data/etc/apns-conf.xml:system/etc/apns-conf.xml \
  /build/target/board/generic_x86/
device.mk 26 device/generic/goldfish/data/etc/apns-conf.xml:system/etc/apns-conf.xml \
  /build/target/board/generic_x86_64/
device.mk 26 device/generic/goldfish/data/etc/apns-conf.xml:system/etc/apns-conf.xml \
  /build/target/product/
sdk_base.mk 63 device/generic/goldfish/data/etc/apns-conf.xml:system/etc/apns-conf.xml \
64 device/sample/etc/old-apns-conf.xml:system/etc/old-apns-conf.xml \
77 frameworks/av/media/libeffects/data/audio_effects.conf:system/etc/audio_effects.conf \
78 hardware/libhardware_legacy/audio/audio_policy.conf:system/etc/audio_policy.conf
  /docs/source.android.com/scripts/
build2stage.sh 16 source /etc/profile.d/build2stage-conf.sh
  /external/avahi/initscript/archlinux/
avahi-daemon.in 26 . /etc/rc.conf
avahi-dnsconfd.in 26 . /etc/rc.conf
  /external/dbus/test/data/equiv-config-files/basic/
basic-1.conf 9 <include ignore_missing="yes">nonexistent.conf</include>
  /external/dbus/test/data/equiv-config-files/entities/
entities-1.conf 10 <include ignore_missing="ye&#115;">nonexistent.conf&#110;</include>
  /external/dbus/test/data/valid-config-files/
basic.conf 9 <include ignore_missing="yes">nonexistent.conf</include>
entities.conf 10 <include ignore_missing="ye&#115;">nonexistent.conf&#110;</include>
  /external/elfutils/config/
Makefile.am 31 EXTRA_DIST = elfutils.spec.in known-dwarf.awk 10-default-yama-scope.conf

Completed in 897 milliseconds

1 2 3 4 5 67 8 91011>>