Searched defs:enabled (Results 226 - 250 of 770) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Dprofiledata.h81 bool enabled; // Is profiling currently enabled? member in struct:ProfileData::State
82 time_t start_time; // If enabled, when was profiling started?
108 // If data collection is not already enabled start to collect data
113 // error occurred or if data collection was already enabled) returns
117 // If data collection is enabled, stop data collection and write the
125 // If data collection is enabled, record a sample with 'depth'
134 // If data collection is enabled, write the data to disk (and leave
135 // the collector enabled).
138 // Is data collection currently enabled
139 bool enabled() const { return out_ >= 0; } function in class:ProfileData
[all...]
/external/chromium_org/third_party/webrtc/base/
H A Dsslstreamadapter.h57 void set_client_auth_enabled(bool enabled) { client_auth_enabled_ = enabled; } argument
/external/chromium_org/third_party/webrtc/modules/remote_bitrate_estimator/test/
H A Dbwe_test_logging.cc40 Logging::Context::Context(uint32_t name, int64_t timestamp_ms, bool enabled) { argument
41 Logging::GetInstance()->PushState(ToString(name), timestamp_ms, enabled); local
45 bool enabled) {
46 Logging::GetInstance()->PushState(name, timestamp_ms, enabled);
50 bool enabled) {
51 Logging::GetInstance()->PushState(name, timestamp_ms, enabled);
77 void Logging::SetGlobalEnable(bool enabled) { argument
79 thread_map_[ThreadWrapper::GetThreadId()].global_state.enabled = enabled;
87 if (state.enabled) {
44 Context(const std::string& name, int64_t timestamp_ms, bool enabled) argument
49 Context(const char* name, int64_t timestamp_ms, bool enabled) argument
115 State(const std::string& tag, int64_t timestamp_ms, bool enabled) argument
132 PushState(const std::string& append_to_tag, int64_t timestamp_ms, bool enabled) argument
[all...]
H A Dbwe_test_logging.h48 // tree. A branch is enabled by default but can be *disabled* to reduce output.
61 #define BWE_TEST_LOGGING_GLOBAL_ENABLE(enabled)
68 // enabled all the way to the root of the call tree to take place.
70 #define BWE_TEST_LOGGING_ENABLE(enabled)
110 #define BWE_TEST_LOGGING_GLOBAL_ENABLE(enabled) \
112 webrtc::testing::bwe::Logging::GetInstance()->SetGlobalEnable(enabled); \
116 #define __BWE_TEST_LOGGING_CONTEXT_DECLARE(ctx, line, name, time, enabled) \
118 __BWE_TEST_LOGGING_CONTEXT_NAME(ctx, line)(name, time, enabled)
122 #define BWE_TEST_LOGGING_ENABLE(enabled) \
124 static_cast<bool>(enabled))
201 bool enabled; member in struct:webrtc::testing::bwe::Logging::State
[all...]
/external/chromium_org/third_party/webrtc/voice_engine/
H A Dvoe_dtmf_impl.cc126 // This flag ensures that feedback/playout is enabled; however, the
244 int VoEDtmfImpl::GetDtmfFeedbackStatus(bool& enabled, bool& directFeedback) argument
251 enabled = _dtmfFeedback;
256 "GetDtmfFeedbackStatus() => enabled=%d, directFeedback=%d",
257 enabled, directFeedback);
283 int VoEDtmfImpl::GetDtmfPlayoutStatus(int channel, bool& enabled) argument
286 "GetDtmfPlayoutStatus(channel=%d, enabled=?)", channel);
300 enabled = channelPtr->DtmfPlayoutStatus();
303 "GetDtmfPlayoutStatus() => enabled=%d", enabled);
[all...]
H A Dvoe_volume_control_impl.cc259 int VoEVolumeControlImpl::GetInputMute(int channel, bool& enabled) argument
271 enabled = _shared->transmit_mixer()->Mute();
283 enabled = channelPtr->Mute();
287 "GetInputMute() => enabled = %d", (int)enabled);
/external/chromium_org/tools/cr/cr/
H A Dvisitor.py33 if not node.enabled:
149 def __init__(self, name='--', enabled=True, export=True):
155 self._enabled = enabled
168 def enabled(self): member in class:Node
171 @enabled.setter
172 def enabled(self, value): member in class:Node
/external/chromium_org/ui/accessibility/extensions/highcontrast/
H A Dhighcontrast.js6 var enabled = false; variable
34 if (enabled) {
69 if (enabled != request.enabled || scheme != request.scheme) {
70 enabled = request.enabled;
/external/chromium_org/ui/message_center/
H A Dfake_notifier_settings_provider.cc74 bool enabled) {
75 enabled_[&notifier] = enabled;
73 SetNotifierEnabled(const Notifier& notifier, bool enabled) argument
/external/chromium_org/ui/message_center/views/
H A Dnotifier_settings_view_unittest.cc16 bool enabled) {
18 return new Notifier(notifier_id, base::UTF8ToUTF16(title), enabled);
84 notifiers.push_back(NewNotifier("id", "title", /*enabled=*/true));
85 notifiers.push_back(NewNotifier("id2", "other title", /*enabled=*/false));
14 NewNotifier(const std::string& id, const std::string& title, bool enabled) argument
/external/conscrypt/src/main/java/org/conscrypt/
H A DOpenSSLServerSocketImpl.java112 public void setChannelIdEnabled(boolean enabled) { argument
113 channelIdEnabled = enabled;
117 * Checks whether the TLS Channel ID extension is enabled for this server socket.
/external/icu/icu4c/source/i18n/
H A Ducsdet.cpp185 ucsdet_setDetectableCharset(UCharsetDetector *ucsd, const char *encoding, UBool enabled, UErrorCode *status) argument
187 ((CharsetDetector *)ucsd)->setDetectableCharset(encoding, enabled, *status);
/external/linux-tools-perf/perf-3.12.0/tools/perf/tests/
H A Drdpmc.c36 u64 count, cyc = 0, time_offset = 0, enabled, running, delta; local
42 enabled = pc->time_enabled;
45 if (enabled != running) {
60 if (enabled != running) {
68 enabled += delta;
74 count = quot * enabled + (rem * enabled) / running;
/external/lldb/include/lldb/Breakpoint/
H A DBreakpointOptions.h35 /// Default constructor. The breakpoint is enabled, and has no condition,
55 /// @param[in] enabled
56 /// Is this breakpoint enabled.
67 bool enabled = true,
195 /// \b true if the breakpoint is enabled, \b false if disabled.
207 SetEnabled (bool enabled) argument
209 m_enabled = enabled;
/external/lldb/source/Breakpoint/
H A DBreakpointList.cpp72 BreakpointList::SetEnabledAll (bool enabled) argument
77 (*pos)->SetEnabled (enabled);
/external/lldb/tools/debugserver/source/
H A DDNBBreakpoint.h84 void SetEnabled(bool enabled) argument
86 if (!enabled)
88 m_enabled = enabled;
/external/mesa3d/src/gallium/drivers/r600/
H A Devergreen_compute_internal.h47 int enabled; member in struct:evergreen_compute_resource
/external/mesa3d/src/gallium/drivers/svga/
H A Dsvga_state_rss.c126 if (!curr->stencil[0].enabled)
133 else if (curr->stencil[0].enabled && !curr->stencil[1].enabled)
263 /* bitmask of the enabled clip planes */
264 unsigned enabled = svga->curr.rast->templ.clip_plane_enable; local
265 EMIT_RS( svga, enabled, CLIPPLANEENABLE, fail );
/external/mesa3d/src/glx/
H A Dindirect_vertex_array_priv.h102 * Set to \c GL_TRUE if this array is enabled. Otherwise, it is set
105 GLboolean enabled; member in struct:array_state
172 * Set to \c GL_TRUE if this array is enabled. Otherwise, it is set
175 GLboolean enabled; member in struct:array_stack_state
199 * Number of currently enabled client-side arrays. The value of this
231 * modifying the array settings for an enabled array and enabling /
/external/oprofile/module/
H A Doprofile.h62 int enabled; member in struct:oprof_counter
/external/qemu/distrib/sdl-1.2.15/src/audio/
H A DSDL_sysaudio.h74 int enabled; member in struct:SDL_AudioDevice
/external/qemu/distrib/sdl-1.2.15/src/video/xbios/
H A DSDL_xbios_blowup.h39 unsigned short enabled; /* Extended mode enabled ? 0=yes, <>0=no */ member in struct:__anon29615
/external/wpa_supplicant_8/hostapd/src/pae/
H A Dieee802_1x_secy_ops.c28 int secy_cp_control_protect_frames(struct ieee802_1x_kay *kay, Boolean enabled) argument
44 return ops->enable_protect_frames(ops->ctx, enabled);
48 int secy_cp_control_replay(struct ieee802_1x_kay *kay, Boolean enabled, u32 win) argument
64 return ops->set_replay_protect(ops->ctx, enabled, win);
97 int secy_cp_control_enable_port(struct ieee802_1x_kay *kay, Boolean enabled) argument
113 return ops->enable_controlled_port(ops->ctx, enabled);
/external/wpa_supplicant_8/src/pae/
H A Dieee802_1x_secy_ops.c28 int secy_cp_control_protect_frames(struct ieee802_1x_kay *kay, Boolean enabled) argument
44 return ops->enable_protect_frames(ops->ctx, enabled);
48 int secy_cp_control_replay(struct ieee802_1x_kay *kay, Boolean enabled, u32 win) argument
64 return ops->set_replay_protect(ops->ctx, enabled, win);
97 int secy_cp_control_enable_port(struct ieee802_1x_kay *kay, Boolean enabled) argument
113 return ops->enable_controlled_port(ops->ctx, enabled);
/external/wpa_supplicant_8/wpa_supplicant/src/pae/
H A Dieee802_1x_secy_ops.c28 int secy_cp_control_protect_frames(struct ieee802_1x_kay *kay, Boolean enabled) argument
44 return ops->enable_protect_frames(ops->ctx, enabled);
48 int secy_cp_control_replay(struct ieee802_1x_kay *kay, Boolean enabled, u32 win) argument
64 return ops->set_replay_protect(ops->ctx, enabled, win);
97 int secy_cp_control_enable_port(struct ieee802_1x_kay *kay, Boolean enabled) argument
113 return ops->enable_controlled_port(ops->ctx, enabled);

Completed in 2218 milliseconds

1234567891011>>