HomeSort by relevance Sort by last modified time
    Searched full:enabled (Results 101 - 125 of 2552) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/opencore/nodes/common/include/
pvmf_composer_size_and_duration.h 62 * If maximum file size is enabled, the composer will stop the recording session
84 * is enabled, else false.
93 * If maximum recording duration is enabled, the composer will stop the recording session
116 * is enabled, else false.
125 * If recording progress report in terms of file size written is enabled, the composer will
137 * in terms of file size written is enabled, else false.
150 * in terms of file size written is enabled, else false.
159 * If recording progress report in terms of duration of output file is enabled, the composer will
171 * in terms of duration of output file is enabled, else false.
184 * in terms of duration of output file is enabled, else false
    [all...]
  /external/wpa_supplicant/
driver_hostap.c 103 static int wpa_driver_hostap_set_wpa(void *priv, int enabled)
108 wpa_printf(MSG_DEBUG, "%s: enabled=%d", __FUNCTION__, enabled);
110 if (!enabled && wpa_driver_hostap_set_wpa_ie(drv, NULL, 0) < 0)
112 if (prism2param(drv, PRISM2_PARAM_HOST_ROAMING, enabled ? 2 : 0) < 0)
114 if (prism2param(drv, PRISM2_PARAM_WPA, enabled) < 0)
229 static int wpa_driver_hostap_set_countermeasures(void *priv, int enabled)
232 wpa_printf(MSG_DEBUG, "%s: enabled=%d", __FUNCTION__, enabled);
233 return prism2param(drv, PRISM2_PARAM_TKIP_COUNTERMEASURES, enabled);
    [all...]
driver_ndiswrapper.c 100 static int wpa_ndiswrapper_set_wpa(void *priv, int enabled)
108 priv_req.u.data.flags = enabled;
145 * enabled AP to plaintext one seemed to fail since the driver
156 static int wpa_ndiswrapper_set_countermeasures(void *priv, int enabled)
164 priv_req.u.param.value = enabled;
172 int enabled)
180 priv_req.u.param.value = enabled;
  /external/wpa_supplicant_6/wpa_supplicant/src/drivers/
driver_hostap.c 101 static int wpa_driver_hostap_set_wpa(void *priv, int enabled)
106 wpa_printf(MSG_DEBUG, "%s: enabled=%d", __FUNCTION__, enabled);
108 if (!enabled && wpa_driver_hostap_set_wpa_ie(drv, NULL, 0) < 0)
110 if (prism2param(drv, PRISM2_PARAM_HOST_ROAMING, enabled ? 2 : 0) < 0)
112 if (prism2param(drv, PRISM2_PARAM_WPA, enabled) < 0)
227 static int wpa_driver_hostap_set_countermeasures(void *priv, int enabled)
230 wpa_printf(MSG_DEBUG, "%s: enabled=%d", __FUNCTION__, enabled);
231 return prism2param(drv, PRISM2_PARAM_TKIP_COUNTERMEASURES, enabled);
    [all...]
driver_ndiswrapper.c 100 static int wpa_ndiswrapper_set_wpa(void *priv, int enabled)
108 priv_req.u.data.flags = enabled;
145 * enabled AP to plaintext one seemed to fail since the driver
156 static int wpa_ndiswrapper_set_countermeasures(void *priv, int enabled)
164 priv_req.u.param.value = enabled;
172 int enabled)
180 priv_req.u.param.value = enabled;
  /packages/apps/Email/src/com/android/email/activity/setup/
AccountSetupOutgoing.java 225 boolean enabled =
228 if (enabled && mRequireLoginView.isChecked()) {
229 enabled = (Utility.requiredFieldValid(mUsernameView)
233 if (enabled) {
237 enabled = false;
240 mNextButton.setEnabled(enabled);
241 Utility.setCompoundDrawablesAlpha(mNextButton, enabled ? 255 : 128);
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/location/
CoordinateControls.java 150 * @param enabled the enabled state.
152 public void setEnabled(boolean enabled) {
153 mDecimalText.setEnabled(enabled);
154 mSexagesimalDegreeText.setEnabled(enabled);
155 mSexagesimalMinuteText.setEnabled(enabled);
156 mSexagesimalSecondText.setEnabled(enabled);
  /external/emma/core/java12/com/vladium/emma/report/
ReportProperties.java 43 if ($assert.ENABLED) $assert.ASSERT (outEncoding != null, "null input: outEncoding");
55 if ($assert.ENABLED) $assert.ASSERT (outDir != null, "null input: outDir");
67 if ($assert.ENABLED) $assert.ASSERT (outFile != null, "null input: outFile");
79 if ($assert.ENABLED) $assert.ASSERT (unitsType >= IItemAttribute.UNITS_COUNT && unitsType <= IItemAttribute.UNITS_INSTR, "invalid units type: " + unitsType);
91 if ($assert.ENABLED) $assert.ASSERT (viewType >= IReportDataView.HIER_CLS_VIEW && viewType <= IReportDataView.HIER_SRC_VIEW, "invalid view type: " + viewType);
103 if ($assert.ENABLED) $assert.ASSERT (depth >= IItemMetadata.TYPE_ID_ALL && depth <= IItemMetadata.TYPE_ID_METHOD, "invalid depth: " + depth);
125 if ($assert.ENABLED) $assert.ASSERT (columnOrder != null && columnOrder.length != 0, "null/empty input: outEncoding");
137 if ($assert.ENABLED) $assert.ASSERT (sortOrder != null, "null input: sortOrder");
149 if ($assert.ENABLED) $assert.ASSERT (metrics != null, "null input: metrics");
163 if ($assert.ENABLED)
    [all...]
  /frameworks/base/docs/html/guide/topics/resources/
menu-resource.jd 48 android:enabled=["enabled" | "disabled"] /&gt;
54 android:enabled=["enabled" | "disabled"] &gt;
82 visible, enabled, or checkable). Contains one or more <code>&lt;item&gt;</code> elements. Must be a
117 <dt><code>android:enabled</code></dt>
118 <dd><em>Boolean</em>. "true" if the group is enabled.</dd>
163 <dt><code>android:enabled</code></dt>
164 <dd><em>Boolean</em>. "true" if the item is enabled by default.</dd>
  /packages/apps/DeskClock/src/com/android/deskclock/
AlarmClock.java 68 private void updateIndicatorAndAlarm(boolean enabled, ImageView bar,
70 bar.setImageResource(enabled ? R.drawable.ic_indicator_on
72 Alarms.enableAlarm(this, alarm.id, enabled);
73 if (enabled) {
101 barOnOff.setImageResource(alarm.enabled ?
107 clockOnOff.setChecked(alarm.enabled);
178 Alarms.enableAlarm(this, alarm.id, !alarm.enabled);
179 if (!alarm.enabled) {
278 if (alarm.enabled) {
  /bootable/recovery/minzip/
Log.h 130 * Conditional based on whether the current LOG_TAG is enabled at
142 * Conditional based on whether the current LOG_TAG is enabled at
150 * Conditional based on whether the current LOG_TAG is enabled at
158 * Conditional based on whether the current LOG_TAG is enabled at
166 * Conditional based on whether the current LOG_TAG is enabled at
  /cts/tools/annotation-helper/.settings/
org.eclipse.jdt.core.prefs 7 org.eclipse.jdt.core.compiler.problem.deprecationWhenOverridingDeprecatedMethod=enabled
11 org.eclipse.jdt.core.compiler.problem.fatalOptionalError=enabled
37 org.eclipse.jdt.core.compiler.problem.suppressWarnings=enabled
47 org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownExceptionWhenOverriding=enabled
52 org.eclipse.jdt.core.compiler.problem.unusedParameterIncludeDocCommentReference=enabled
  /dalvik/libcore/concurrent/src/main/java/java/util/concurrent/
ScheduledExecutorService.java 35 * which the task is enabled due to network time synchronization
71 * Creates and executes a one-shot action that becomes enabled
88 * Creates and executes a ScheduledFuture that becomes enabled after the
103 * Creates and executes a periodic action that becomes enabled first
133 * Creates and executes a periodic action that becomes enabled first
  /external/apache-http/src/org/apache/http/impl/conn/
LoggingSessionInputBuffer.java 73 if (this.wire.enabled() && l > 0) {
81 if (this.wire.enabled() && l > 0) {
89 if (this.wire.enabled() && l > 0) {
97 if (this.wire.enabled() && s != null) {
105 if (this.wire.enabled() && l > 0) {
LoggingSessionOutputBuffer.java 67 if (this.wire.enabled()) {
74 if (this.wire.enabled()) {
81 if (this.wire.enabled()) {
92 if (this.wire.enabled()) {
100 if (this.wire.enabled()) {
  /external/kernel-headers/original/linux/
rtc.h 37 unsigned char enabled; /* 0 = alarm disabled, 1 = alarm enabled */ member in struct:rtc_wkalrm
67 * any of the RTC drivers are enabled.
128 int (*irq_set_state)(struct device *, int enabled);
198 struct rtc_task *task, int enabled);
  /frameworks/base/include/camera/
CameraHardwareInterface.h 70 * sends the message CAMERA_MSG_PREVIEW_FRAME (if enabled) each time
82 * is desired, the corresponding message must be enabled. As with CAMERA_MSG_PREVIEW_FRAME,
118 * Query whether a message, or a set of messages, is enabled.
141 * Returns true if preview is enabled.
158 * Returns true if recording is enabled.
  /packages/apps/Email/tests/src/com/android/exchange/
CalendarSyncEnablerTest.java 145 * <li>Calendar sync is enabled if it's an Exchange account.<br>
156 boolean enabled = ContentResolver.getSyncAutomatically(account, Calendar.AUTHORITY);
160 // Should be enabled.
161 // assertEquals(message, Boolean.TRUE, (Boolean) enabled);
165 assertEquals(message, origCalendarSyncStates.get(account), (Boolean) enabled);
  /packages/apps/Phone/res/values/
config.xml 55 These OTA UI can be enabled by setting config value to one in the product
81 <!-- Flag indicating if the tty is enabled -->
84 <!-- Flag indicating if hac is enabled -->
87 <!-- Flag indicating if dtmf tone type is enabled -->
90 <!-- Flag indicating if auto retry is enabled -->
  /packages/apps/Phone/src/com/android/phone/
HapticFeedback.java 86 * @param enabled If false, vibrate will be a no-op regardless of
89 public void init(Context context, boolean enabled) {
90 mEnabled = enabled;
91 if (enabled) {
103 * Reload the system settings to check if the user enabled the
  /external/icu4c/
configure.in 140 enabled=no
144 yes|"") enabled=yes; ENABLE_SHARED=YES ;;
148 [enabled=yes; ENABLE_SHARED=YES]
150 AC_MSG_RESULT($enabled)
155 enabled=no
159 yes|"") enabled=yes; ENABLE_STATIC=YES ;;
164 AC_MSG_RESULT($enabled)
169 enabled=no
174 yes|"") enabled=yes; ENABLE_DEBUG=1 ;;
178 AC_MSG_RESULT($enabled)
    [all...]
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/
EmulatorControlPanel.java 412 // suppose that we are enabled when the text is modified...
    [all...]
  /external/qemu/hw/
arm_gic.c 42 unsigned enabled:1; member in struct:gic_irq_state
52 #define GIC_SET_ENABLED(irq) s->irq_state[irq].enabled = 1
53 #define GIC_CLEAR_ENABLED(irq) s->irq_state[irq].enabled = 0
54 #define GIC_TEST_ENABLED(irq) s->irq_state[irq].enabled
82 int enabled; member in struct:gic_state
102 /* Update interrupt status after enabled or pending bits have been changed. */
115 if (!s->enabled || !s->cpu_enabled[cpu]) {
256 return s->enabled;
388 s->enabled = (value & 1);
389 DPRINTF("Distribution %sabled\n", s->enabled ? "En" : "Dis")
    [all...]
  /dalvik/libcore/x-net/src/main/java/javax/net/ssl/
SSLSocketFactory.java 107 * Returns the names of the cipher suites that are enabled by default.
109 * @return the names of the cipher suites that are enabled by default.
115 * enabled for an SSL connection.
  /external/emma/core/java12/com/vladium/util/asserts/
$assert.java 26 public static final boolean ENABLED = false;
35 if (ENABLED)
43 if (ENABLED)

Completed in 2986 milliseconds

1 2 3 45 6 7 8 91011>>