HomeSort by relevance Sort by last modified time
    Searched refs:enable (Results 76 - 100 of 3710) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/ltp/testcases/kernel/tracing/ftrace_test/ftrace_stress/
ftrace_ftrace_enabled.sh 28 enable=$(( $count % 3 ))
30 if [ $enable -eq 0 ]; then
ftrace_function_profile_enabled.sh 29 enable=$(( $count % 3 ))
31 if [ $enable -eq 0 ]; then
  /external/tensorflow/tensorflow/core/platform/profile_utils/
i_cpu_utils_helper.h 38 // Enable clock cycle profile
39 // You can enable / disable profile if it's supported by the platform
40 virtual void EnableClockCycleProfiling(bool enable) = 0;
  /external/vulkan-validation-layers/demos/
cube.vert 22 #extension GL_ARB_separate_shader_objects : enable
23 #extension GL_ARB_shading_language_420pack : enable
  /external/webrtc/talk/app/webrtc/
mediastreamprovider.h 60 // Enable/disable the audio playout of a remote audio track with |ssrc|.
61 virtual void SetAudioPlayout(uint32_t ssrc, bool enable) = 0;
62 // Enable/disable sending audio on the local audio track with |ssrc|.
63 // When |enable| is true |options| should be applied to the audio track.
65 bool enable,
90 // Enable/disable the video playout of a remote video track with |ssrc|.
92 bool enable,
94 // Enable sending video on the local video track with |ssrc|.
96 bool enable,
  /external/webrtc/talk/session/media/
mediasink.h 40 virtual bool Enable(bool enable) = 0;
  /external/webrtc/webrtc/modules/audio_coding/codecs/
audio_encoder.cc 40 bool AudioEncoder::SetFec(bool enable) {
41 return !enable;
44 bool AudioEncoder::SetDtx(bool enable) {
45 return !enable;
  /frameworks/base/core/java/android/webkit/
IWebViewUpdateService.aidl 78 * Enable or disable the WebView package fallback mechanism.
80 void enableFallbackLogic(boolean enable);
88 * Used by Settings to enable/disable multiprocess.
90 void enableMultiProcess(boolean enable);
  /hardware/qcom/display/msm8996/sdm/include/private/
partial_update_interface.h 39 virtual void ControlPartialUpdate(bool enable) = 0;
  /libcore/ojluni/src/main/java/java/lang/
Compiler.java 85 public static void enable() { method in class:Compiler
  /packages/apps/Launcher3/src/com/android/launcher3/accessibility/
AccessibleDragListenerAdapter.java 28 * Utility listener to enable/disable accessibility drag flags for a ViewGroup
57 protected void enableAccessibleDrag(boolean enable) {
59 setEnableForLayout((CellLayout) mViewGroup.getChildAt(i), enable);
63 protected final void setEnableForLayout(CellLayout layout, boolean enable) {
64 layout.enableAccessibleDrag(enable, mDragType);
  /tools/tradefederation/core/src/com/android/tradefed/device/
IManagedTestDeviceFactory.java 35 * Enable or not fastboot support for the device created.
36 * @param enable value set the support.
38 public void setFastbootEnabled(boolean enable);
  /external/linux-kselftest/tools/testing/selftests/ftrace/test.d/kprobe/
add_and_remove.tc 7 echo 0 > events/enable
  /external/linux-kselftest/tools/testing/selftests/ftrace/test.d/trigger/
trigger-eventonoff.tc 3 # description: event trigger - test event enable/disable trigger
33 echo "event enable/disable trigger is not supported"
38 echo 0 > events/sched/sched_switch/enable
41 if [ `cat events/sched/sched_switch/enable` != '1*' ]; then
48 echo 1 > events/sched/sched_switch/enable
51 if [ `cat events/sched/sched_switch/enable` != '0*' ]; then
57 echo "Test semantic error for event enable/disable trigger"
  /external/tensorflow/tensorflow/c/
c_api_experimental.cc 22 void TF_EnableXLACompilation(TF_SessionOptions* options, unsigned char enable) {
26 if (enable) {
30 // non-Python) clients. If this API is called again with `enable` set to
  /external/webrtc/talk/media/base/
videoframefactory.h 65 void SetApplyRotation(bool enable) { apply_rotation_ = enable; }
videoadapter.h 65 void set_scale_third(bool enable);
118 // Enable or disable video adaptation due to the change of the CPU load.
119 void set_cpu_adaptation(bool enable) { cpu_adaptation_ = enable; }
121 // Enable or disable smoothing when doing CPU adaptation. When smoothing is
124 void set_cpu_smoothing(bool enable);
126 // Enable or disable video adaptation due to the change of the GD
127 void set_gd_adaptation(bool enable) { gd_adaptation_ = enable; }
129 // Enable or disable video adaptation due to the change of the Vie
    [all...]
  /hardware/libhardware/modules/sensors/dynamic_sensor/
BaseSensorObject.h 46 // enable sensor
47 virtual int enable(bool enable) = 0;
  /libcore/support/src/test/java/org/apache/harmony/security/tests/support/
SecurityChecker.java 39 public SecurityChecker(Permission target, boolean enable) {
42 enableAccess = enable;
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-elf/
now-1.d 3 #ld: -shared -z now --enable-new-dtags
  /external/curl/scripts/
coverage.sh 6 ../configure --disable-shared --enable-debug --enable-maintainer-mode --enable-code-coverage
  /frameworks/native/services/surfaceflinger/RenderEngine/
Surface.h 32 virtual void setCritical(bool enable) = 0;
33 virtual void setAsync(bool enable) = 0;
60 void setCritical(bool enable) override { mCritical = enable; }
61 void setAsync(bool enable) override { mAsync = enable; }
  /external/webrtc/webrtc/voice_engine/
voe_audio_processing_impl.h 22 int SetNsStatus(bool enable, NsModes mode = kNsUnchanged) override;
26 int SetAgcStatus(bool enable, AgcModes mode = kAgcUnchanged) override;
35 bool enable,
41 bool enable,
50 int SetEcStatus(bool enable, EcModes mode = kEcUnchanged) override;
52 int EnableDriftCompensation(bool enable) override;
63 int EnableHighPassFilter(bool enable) override;
72 int SetEcMetricsStatus(bool enable) override;
87 int SetTypingDetectionStatus(bool enable) override;
100 void EnableStereoChannelSwapping(bool enable) override
    [all...]
  /system/core/adb/
set_verity_enable_state_service.cpp 50 bool enable) {
72 if (!enable && metadata.disabled) {
77 if (enable && !metadata.disabled) {
82 if (!fh.set_verity_status(enable)) {
84 enable ? "enabled" : "disabled",
89 WriteFdFmt(fd, "Verity %s on %s\n", enable ? "enabled" : "disabled", mount_point);
138 bool enable = (cookie != NULL); local
146 // be possible to disable/enable on any build (except USER). For
151 enable ? "enable" : "disable")
    [all...]
  /external/webrtc/webrtc/modules/audio_device/android/java/src/org/webrtc/voiceengine/
WebRtcAudioEffects.java 29 // NoiseSuppressor (NS). Calling enable() will active all effects that are
52 // Contains the audio effect objects. Created in enable() and destroyed
61 // To enable an effect, both the shouldEnableXXX member and the static
161 // It will not be possible to enable the HW AEC if this method returns false.
176 // It will not be possible to enable the HW AGC if this method returns false.
191 // It will not be possible to enable the HW NS if this method returns false.
217 // Call this method to enable or disable the platform AEC. It modifies
218 // |shouldEnableAec| which is used in enable() where the actual state
221 public boolean setAEC(boolean enable) {
222 Logging.d(TAG, "setAEC(" + enable + ")")
274 public void enable(int audioSession) { method in class:WebRtcAudioEffects
    [all...]

Completed in 689 milliseconds

1 2 34 5 6 7 8 91011>>