/frameworks/base/core/java/android/bluetooth/ |
BluetoothA2dp.java | 49 * Intent used to broadcast the change in connection state of the A2DP 54 * <li> {@link #EXTRA_STATE} - The current state of the profile. </li> 55 * <li> {@link #EXTRA_PREVIOUS_STATE}- The previous state of the profile.</li> 71 * Intent used to broadcast the change in the Playing state of the A2DP 76 * <li> {@link #EXTRA_STATE} - The current state of the profile. </li> 77 * <li> {@link #EXTRA_PREVIOUS_STATE}- The previous state of the profile. </li> 92 * A2DP sink device is streaming music. This state can be one of 99 * A2DP sink device is NOT streaming music. This state can be one of 146 * connection state intent for the profile will be broadcasted with 147 * the state. Users can get the connection state of the profil [all...] |
/frameworks/base/services/java/com/android/server/ |
TelephonyRegistry.java | 117 // we keep a copy of all of the state so we can send it out when folks 258 public void notifyCallState(int state, String incomingNumber) { 263 mCallState = state; 268 r.callback.onCallStateChanged(state, incomingNumber); 276 broadcastCallStateChanged(state, incomingNumber); 279 public void notifyServiceState(ServiceState state) { 284 mServiceState = state; 288 r.callback.onServiceStateChanged(new ServiceState(state)); 296 broadcastServiceStateChanged(state); 366 public void notifyDataActivity(int state) { [all...] |
/external/ipsec-tools/src/racoon/missing/crypto/sha2/ |
sha2.c | 338 bcopy(sha256_initial_hash_value, context->state, SHA256_DIGEST_LENGTH); 388 a = context->state[0]; 389 b = context->state[1]; 390 c = context->state[2]; 391 d = context->state[3]; 392 e = context->state[4]; 393 f = context->state[5]; 394 g = context->state[6]; 395 h = context->state[7]; 423 context->state[0] += a [all...] |
/frameworks/base/core/tests/bluetoothtests/src/android/bluetooth/ |
BluetoothTestUtils.java | 124 int state = intent.getIntExtra(BluetoothAdapter.EXTRA_STATE, -1); local 125 assertNotSame(-1, state); 126 switch (state) { 186 int state = intent.getIntExtra(BluetoothDevice.EXTRA_BOND_STATE, -1); local 187 assertNotSame(-1, state); 188 switch (state) { 244 int state = intent.getIntExtra(BluetoothProfile.EXTRA_STATE, -1); local 245 assertNotSame(-1, state); 246 switch (state) { 294 int state = intent.getIntExtra(AudioManager.EXTRA_SCO_AUDIO_STATE local 429 int state = adapter.getState(); local 489 int state = adapter.getState(); local 790 int state = device.getBondState(); local 852 int state = device.getBondState(); local 928 int state = proxy.getConnectionState(device); local 1009 int state = proxy.getConnectionState(device); local 1117 int state = mPan.getConnectionState(device); local 1222 int state = mPan.getConnectionState(device); local [all...] |
/external/clang/lib/StaticAnalyzer/Core/ |
RangeConstraintManager.cpp | 164 // IntersectInRange() does not reset the iteration state for i and e. 207 RangeSet GetRange(const ProgramState *state, SymbolRef sym); 212 const ProgramState *assumeSymNE(const ProgramState *state, SymbolRef sym, 216 const ProgramState *assumeSymEQ(const ProgramState *state, SymbolRef sym, 220 const ProgramState *assumeSymLT(const ProgramState *state, SymbolRef sym, 224 const ProgramState *assumeSymGT(const ProgramState *state, SymbolRef sym, 228 const ProgramState *assumeSymGE(const ProgramState *state, SymbolRef sym, 232 const ProgramState *assumeSymLE(const ProgramState *state, SymbolRef sym, 269 RangeConstraintManager::removeDeadBindings(const ProgramState *state, 272 ConstraintRangeTy CR = state->get<ConstraintRange>() [all...] |
/external/antlr/src/org/antlr/runtime/ |
ANTLRStringStream.java | 56 /** A list of CharStreamState objects that tracks the stream state 86 /** Reset the stream so that it's in the same state it was 156 CharStreamState state = null; local 158 state = new CharStreamState(); 159 markers.add(state); 162 state = (CharStreamState)markers.get(markDepth); 164 state.p = p; 165 state.line = line; 166 state.charPositionInLine = charPositionInLine; 172 CharStreamState state = (CharStreamState)markers.get(m) local [all...] |
/external/chromium/chrome/browser/chromeos/notifications/ |
notification_panel.h | 33 // depending on in which state the panel is. The following shows 34 // how the panel's state changes in response to various events. 36 // TODO(oshima): add remove event and fix state transition graph below. 46 // For state, see State enum's description below. 76 enum State { 123 // Unregister the panel's state change notification. 126 // Update the Panel Size according to its state. 135 // Update the notification's control view state. 152 // Set the state. It can also print th 209 NotificationPanel::State state() { function in class:chromeos::NotificationPanelTester [all...] |
/external/dropbear/libtomcrypt/src/headers/ |
tomcrypt_hash.h | 4 ulong64 length, state[8]; member in struct:sha512_state 13 ulong32 state[8], curlen; member in struct:sha256_state 21 ulong32 state[5], curlen; member in struct:sha1_state 29 ulong32 state[4], curlen; member in struct:md5_state 37 ulong32 state[4], curlen; member in struct:md4_state 44 ulong64 state[3], length; member in struct:tiger_state 61 ulong32 curlen, state[4]; member in struct:rmd128_state 69 ulong32 curlen, state[5]; member in struct:rmd160_state 77 ulong32 curlen, state[8]; member in struct:rmd256_state 85 ulong32 curlen, state[10] member in struct:rmd320_state 91 ulong64 length, state[8]; member in struct:whirlpool_state 100 unsigned char state[MAXBLOCKSIZE], buf[MAXBLOCKSIZE]; member in struct:chc_state [all...] |
/external/speex/libspeex/ |
nb_celp.h | 49 /**Structure representing the full state of the narrowband encoder*/ 51 const SpeexMode *mode; /**< Mode corresponding to the state */ 97 VBRState *vbr; /**< State of the VBR data */ 122 /**Structure representing the full state of the narrowband decoder*/ 124 const SpeexMode *mode; /**< Mode corresponding to the state */ 177 /** Initializes encoder state*/ 180 /** De-allocates encoder state resources*/ 181 void nb_encoder_destroy(void *state); 184 int nb_encode(void *state, void *in, SpeexBits *bits); 187 /** Initializes decoder state*/ [all...] |
/frameworks/base/core/java/android/widget/ |
CompoundButton.java | 36 * or clicked, the state changes automatically. 98 /* When clicked, toggle the state */ 109 * <p>Changes the checked state of this button.</p> 136 * Register a callback to be invoked when the checked state of this button 139 * @param listener the callback to call on checked state change 146 * Register a callback to be invoked when the checked state of this button 149 * @param listener the callback to call on checked state change 157 * Interface definition for a callback to be invoked when the checked state 162 * Called when the checked state of a compound button has changed. 164 * @param buttonView The compound button view whose state has changed [all...] |
/frameworks/base/services/input/ |
SpriteController.h | 174 /* Describes the state of a sprite. 208 * Requests acquire a lock on the controller, update local state and request the 212 * the sprite state before the work and update the sprite surface control afterwards. 229 return mLocked.state; 233 mLocked.state.dirty = 0; 238 mLocked.state.surfaceControl = surfaceControl; 239 mLocked.state.surfaceWidth = width; 240 mLocked.state.surfaceHeight = height; 241 mLocked.state.surfaceDrawn = drawn; 242 mLocked.state.surfaceVisible = visible 249 SpriteState state; member in struct:android::SpriteController::SpriteImpl::Locked 263 SpriteState state; member in struct:android::SpriteController::SpriteUpdate [all...] |
/external/clang/lib/StaticAnalyzer/Checkers/ |
ObjCSelfInitChecker.cpp | 133 static SelfFlagEnum getSelfFlags(SVal val, const ProgramState *state) { 135 if (const unsigned *attachedFlags = state->get<SelfFlag>(sym)) 144 static void addSelfFlag(const ProgramState *state, SVal val, 148 C.addTransition(state->set<SelfFlag>(sym, getSelfFlags(val, C) | flag)); 202 const ProgramState *state = C.getState(); local 207 state = state->set<CalledInit>(true); 209 SVal V = state->getSVal(msg.getOriginExpr()); 210 addSelfFlag(state, V, SelfFlag_InitRes, C); 262 const ProgramState *state = C.getState() local 280 const ProgramState *state = C.getState(); local 303 const ProgramState *state = C.getState(); local [all...] |
/external/jsilver/src/com/google/clearsilver/jsilver/autoescape/ |
AutoEscapeContext.java | 120 * Create a new context in the state represented by mode. 129 * Create a new context in the state represented by mode. If a non-null resourceName is provided, 141 * Create a new context that is a copy of the current state of this context. 143 * @return New {@code AutoEscapeContext} that is a snapshot of the current state of this context. 262 * Parse the given data and update internal state accordingly. 281 * can adjust its internal state accordingly. 293 * Determines whether an included template that begins in state {@code start} is allowed to end in 294 * state {@code end}. Usually included templates are only allowed to end in the same context they 301 * internal state in the same way. 313 * Looks at the current state of the htmlParser, and determines what escaping to apply to 343 ExternalState state = htmlParser.getState(); local [all...] |
/frameworks/base/core/java/android/server/ |
BluetoothBondState.java | 49 * Local cache of bonding state. 50 * We keep our own state to track the intermediate state BONDING, which 130 public synchronized void setBondState(String address, int state) { 131 setBondState(address, state, 0); 134 /** reason is ignored unless state == BOND_NOT_BONDED */ 135 public synchronized void setBondState(String address, int state, int reason) { 136 if (DBG) Log.d(TAG, "setBondState " + "address" + " " + state + "reason: " + reason); 139 if (oldState == state) { 144 // If yes, reset the state 235 Integer state = mState.get(address); local [all...] |
BluetoothHealthProfileHandler.java | 148 int state = BluetoothHealth.STATE_CHANNEL_DISCONNECTED; 149 callHealthChannelCallback(chan.mConfig, chan.mDevice, prevState, state, null, 220 int state = BluetoothHealth.STATE_CHANNEL_CONNECTING; local 221 callHealthChannelCallback(config, device, prevState, state, null, chan.mId); 314 for (int state : states) { 315 if (chan.mState == state) { 396 int state) { 400 callHealthChannelCallback(channel.mConfig, channel.mDevice, channel.mState, state, null, 438 int state, prevState = BluetoothHealth.STATE_CHANNEL_DISCONNECTED; local 474 state = BluetoothHealth.STATE_CHANNEL_CONNECTED [all...] |
/external/wpa_supplicant_6/wpa_supplicant/src/wps/ |
wps_enrollee.c | 35 u8 state; local 37 state = wps->wps->wps_state; 39 state = WPS_STATE_NOT_CONFIGURED; 40 wpa_printf(MSG_DEBUG, "WPS: * Wi-Fi Protected Setup State (%d)", 41 state); 44 wpabuf_put_u8(msg, state); 158 wps->state = RECV_M2; 188 wps->state = RECV_M4; 222 wps->state = RECV_M6; 324 wps->state = RECV_M8 [all...] |
/dalvik/dexgen/src/com/android/dexgen/dex/code/ |
LocalSnapshot.java | 26 * state of local variable name mappings that exists immediately after 30 /** {@code non-null;} local state associated with this instance */ 38 * @param locals {@code non-null;} associated local variable state 63 * Gets the local state associated with this instance. 65 * @return {@code non-null;} the state
|
/dalvik/dx/src/com/android/dx/dex/code/ |
LocalSnapshot.java | 26 * state of local variable name mappings that exists immediately after 30 /** {@code non-null;} local state associated with this instance */ 38 * @param locals {@code non-null;} associated local variable state 63 * Gets the local state associated with this instance. 65 * @return {@code non-null;} the state
|
/external/chromium/chrome/browser/ |
fullscreen_win.cc | 24 QUERY_USER_NOTIFICATION_STATE* state); 39 QUERY_USER_NOTIFICATION_STATE state; local 40 if (FAILED((*query_user_notification_state_ptr)(&state))) 42 return state == QUNS_RUNNING_D3D_FULL_SCREEN || 43 state == QUNS_PRESENTATION_MODE;
|
/external/chromium/net/url_request/ |
view_cache_helper.h | 48 enum State { 76 // Runs the state transition loop. 79 // Each of these methods corresponds to a State value. If there is an 80 // argument, the value corresponds to the return of the previous state or 109 State next_state_;
|
/external/chromium/net/websockets/ |
websocket_job.h | 34 // This is state of WebSocket, not SocketStream. 35 enum State { 47 State state() const { return state_; } function in class:net::WebSocketJob 98 State state_;
|
/external/chromium/third_party/libjingle/source/talk/examples/login/ |
xmpppump.cc | 54 void XmppPump::OnStateChange(buzz::XmppEngine::State state) { 55 if (state_ == state) 57 state_ = state; 59 notify_->OnStateChange(state);
|
xmpppump.h | 44 virtual void OnStateChange(buzz::XmppEngine::State state) = 0; 58 void OnStateChange(buzz::XmppEngine::State state); 70 buzz::XmppEngine::State state_;
|
/external/dropbear/ |
cli-service.c | 47 /* This just sets up the state variables right for the main client session loop 59 if (cli_ses.state == SERVICE_AUTH_REQ_SENT 63 cli_ses.state = SERVICE_AUTH_ACCEPT_RCVD; 70 if (cli_ses.state == SERVICE_CONN_REQ_SENT 78 cli_ses.state = SERVICE_CONN_ACCEPT_RCVD;
|
/external/jsilver/src/com/google/streamhtmlparser/ |
Parser.java | 25 * at a time, stopping only when it needs to determine the state of the 28 * <p>We will later add methods to save and restore the full state 56 * Reset the parser back to its initial default state. 61 * Returns the current state of the parser. May be {@link #STATE_ERROR} 66 * @return current state of the parser
|