HomeSort by relevance Sort by last modified time
    Searched refs:State (Results 376 - 400 of 643) sorted by null

<<11121314151617181920>>

  /external/chromium/base/
linux_util.cc 45 // The simple state machine goes from:
50 // Retrieve the current state, if we're in STATE_DID_NOT_CHECK,
53 LinuxDistroState State() {
145 LinuxDistroState state = distro_state_singleton->State();
146 if (STATE_DID_NOT_CHECK == state) {
164 } else if (STATE_CHECK_STARTED == state) {
tracked_objects.h 29 // "stable" state, which is reached relatively quickly, there is no separate
233 // Simple print of internal state.
629 // chooses to try to re-run the browser many times, we maintain global state and
654 enum State {
659 static State state_;
  /external/chromium/chrome/browser/metrics/
metrics_service.h 138 // The MetricsService has a lifecycle that is stored as a state.
140 enum State {
167 // SetRecording(false) also forces a persistent save of logging state (if
316 // Saves plugin-related updates from the in-object buffer to Local State
320 // Records state that should be periodically saved, like uptime and
355 // state.
356 State state_;
  /external/chromium/net/proxy/
init_proxy_resolver.cc 110 State state = next_state_; local
112 switch (state) {
135 NOTREACHED() << "bad state";
152 // If no waiting is required, continue on to the next state.
271 InitProxyResolver::State InitProxyResolver::GetStartState() const {
proxy_service.cc 337 // Reset the state associated with in-progress-resolve.
750 State previous_state = ResetProxyConfig(false);
761 ProxyService::State ProxyService::ResetProxyConfig(bool reset_fetched_config) {
763 State previous_state = current_state_;
779 State previous_state = ResetProxyConfig(true);
922 State previous_state = ResetProxyConfig(false);
    [all...]
  /external/chromium/net/socket/
ssl_client_socket_pool.h 122 enum State {
136 // Runs the state transition loop.
164 State next_state_;
  /external/chromium/net/socket_stream/
socket_stream.h 193 enum State {
278 State next_state_;
  /external/chromium/net/tools/dump_cache/
url_to_filename_encoder.cc 172 enum State {
179 State state = kStart; local
185 switch (state) {
188 state = kEscape;
198 state = kFirstDigit;
200 state = kTruncate;
203 state = kEscapeDot; // Look for at most one more dot.
208 state = kStart;
219 state = kStart
    [all...]
  /external/chromium/third_party/libjingle/source/talk/examples/call/
callclient.h 128 void OnStateChange(buzz::XmppEngine::State state);
139 cricket::BaseSession::State state);
  /external/clang/lib/AST/
DumpXML.cpp 57 NodeState State;
58 Node(StringRef name) : Name(name), State(NS_Attrs) {}
60 bool isDoneWithAttrs() const { return State != NS_Attrs; }
191 if (Stack.back().State == NS_LazyChildren) {
192 Stack.back().State = NS_Children;
211 Stack.back().State = NS_LazyChildren;
217 if (Stack.back().State == NS_LazyChildren) {
1021 Stack.back().State = NS_Children; // explicitly become non-lazy
  /external/icu4c/i18n/
selfmt.cpp 98 enum State{ startState, keywordState, pastKeywordState, phraseState};
115 //Process the state machine
116 State state = startState; local
124 if ( state == phraseState ){
134 //Process the state machine
135 switch (state) {
142 state = keywordState;
153 //Handle the keyword state
157 state = pastKeywordState
    [all...]
  /external/llvm/include/llvm/CodeGen/
CallingConvLower.h 132 /// CCAssignFn - This function assigns a location for Val, updating State to
136 ISD::ArgFlagsTy ArgFlags, CCState &State);
143 ISD::ArgFlagsTy &ArgFlags, CCState &State);
195 /// incorporating info about the formals into this state.
200 /// incorporating info about the result values into this state.
211 /// incorporating info about the passed values into this state.
222 /// incorporating info about the passed values into this state.
  /external/mesa3d/docs/
MESA_pixmap_colormap.spec 84 New State
MESA_set_3dfx_mode.spec 79 New State
MESA_swap_frame_usage.spec 106 Additions to Chapter 6 of the 1.4 GL Specification (State and State Requests)
190 New State
194 New Implementation Dependent State
  /external/skia/include/views/
SkView.h 137 enum State {
144 State fState;
  /external/skia/src/core/
SkClipStack.cpp 6 enum State {
16 State fState;
  /external/skia/src/ports/
SkXMLPullParser_expat.cpp 53 enum State {
58 State fState;
59 const char* fEndTag; // if state is RETURN_END_TAG
  /external/v8/src/
frames-inl.h 79 inline StackHandler::State StackHandler::state() const { function in class:v8::internal::StackHandler
81 return static_cast<State>(Memory::int_at(address() + offset));
log.h 353 // The sampler used by the profiler and the sliding state window.
413 enum State {
421 static State GetState();
436 static Mutex* mutex_; // Protects the state below.
  /frameworks/base/core/java/android/bluetooth/
BluetoothDeviceProfileState.java 31 import com.android.internal.util.State;
37 * This class is the Profile connection state machine associated with a remote
44 * {@link BondedDevice}: This state represents a bonded device. When in this
45 * state none of the profiles are in transition states.
48 * state because of a outgoing Connect or Disconnect.
51 * state because of a incoming Connect or Disconnect.
54 * state because of a incoming Connect or Disconnect.
57 * state because of a outgoing Connect or Disconnect.
66 // TODO(): Restructure the state machine to make it scalable with regard to profiles.
197 int state = intent.getIntExtra(BluetoothDevice.EXTRA_BOND_STATE
213 int state = i.getIntExtra(Intent.EXTRA_DOCK_STATE, Intent.EXTRA_DOCK_STATE_UNDOCKED); local
    [all...]
  /frameworks/base/services/java/com/android/server/
NotificationPlayer.java 132 && (mLooper.getThread().getState() != Thread.State.TERMINATED)) {
185 && (mLooper.getThread().getState() != Thread.State.TERMINATED)) {
234 // The current state according to the caller. Reality lags behind
  /packages/apps/Phone/src/com/android/phone/
EmergencyCallHelper.java 114 * - Listen for the service state change event telling us the radio has come up
118 * - Finally, clean up any leftover state (progress UI, wake locks, etc.)
143 // First of all, clean up any state (including mPartialWakeLock!)
168 // No need to check the current service state here, since the only
199 ServiceState state = (ServiceState) ((AsyncResult) msg.obj).result; local
200 if (DBG) log("onServiceStateChanged()... new state = " + state);
211 boolean okToCall = (state.getState() == ServiceState.STATE_IN_SERVICE)
212 || (state.getState() == ServiceState.STATE_EMERGENCY_ONLY);
218 // Deregister for the service state change events
    [all...]
  /frameworks/base/wifi/java/android/net/wifi/p2p/
WifiP2pService.java 65 import com.android.internal.util.State;
73 * WifiP2pService inclues a state machine to perform Wi-Fi p2p operations. Applications
75 * through the WifiP2pManager interface. The state machine communicates with the wifi
319 class DefaultState extends State {
412 class P2pNotSupportedState extends State {
455 class P2pDisablingState extends State {
487 class P2pDisabledState extends State {
541 class WaitForUserActionState extends State {
571 class WaitForWifiDisableState extends State {
617 class P2pEnablingState extends State {
    [all...]
  /external/chromium/chrome/browser/chromeos/notifications/
notification_browsertest.cc 86 // Waits untilt the panel's state becomes the specified state.
89 PanelController::State state) {
90 if (under_chromeos_ && state != state_) {
91 expected_ = state;
117 PanelController::State* state = local
118 reinterpret_cast<PanelController::State*>(details.map_key());
119 state_ = *state;
    [all...]

Completed in 749 milliseconds

<<11121314151617181920>>