HomeSort by relevance Sort by last modified time
    Searched full:newstate (Results 1 - 25 of 295) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /hardware/invensense/mlsdk/mllite/
mlstates.c 110 * @brief Perform a transition from the current state to newState.
115 * @param newState state we are transitioning to.
118 inv_error_t inv_state_transition(unsigned char newState)
122 if (newState == INV_STATE_SERIAL_CLOSED) {
124 } else if (newState == INV_STATE_SERIAL_OPENED) {
126 } else if (((newState == INV_STATE_DMP_OPENED) &&
130 ((newState == INV_STATE_DMP_STARTED) &&
137 inv_state_name(newState));
145 inv_state_name(newState)));
146 result = inv_run_state_callbacks(newState);
    [all...]
mlstates.h 46 typedef inv_error_t(*state_change_callback_t) (unsigned char newState);
49 inv_error_t inv_state_transition(unsigned char newState);
53 inv_error_t inv_run_state_callbacks(unsigned char newState);
  /external/chromium/chrome/common/extensions/docs/examples/api/idle/idle_simple/
background.html 17 chrome.idle.onStateChanged.addListener(function(newstate) {
22 history_log.unshift({'state':newstate, 'time':time});
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/core/controls/flyout/
IFlyoutListener.java 21 * @param newState the new state
23 void stateChanged(int oldState, int newState);
  /external/webkit/LayoutTests/http/tests/appcache/resources/
fail-on-update.php 6 function setState($newState, $file)
8 file_put_contents($file, $newState);
fail-on-update-2.php 6 function setState($newState, $file)
8 file_put_contents($file, $newState);
  /packages/apps/Bluetooth/src/com/android/bluetooth/btservice/
BondStateMachine.java 117 int newState = msg.arg1;
119 if (newState == BluetoothDevice.BOND_BONDING)
121 sendIntent(dev, newState, 0);
126 Log.e(TAG, "In stable state, received invalid newState: " + newState);
172 int newState = msg.arg1;
174 sendIntent(dev, newState, reason);
175 if(newState != BluetoothDevice.BOND_BONDING )
187 if (newState == BluetoothDevice.BOND_NONE)
192 else if (newState == BluetoothDevice.BOND_BONDED
    [all...]
JniCallbacks.java 64 void bondStateChangeCallback(int status, byte[] address, int newState) {
65 mBondStateMachine.bondStateChangeCallback(status, address, newState);
68 void aclStateChangeCallback(int status, byte[] address, int newState) {
69 mRemoteDevices.aclStateChangeCallback(status, address, newState);
  /hardware/invensense/libsensors_iio/software/core/mpl/
fusion_9axis.h 24 inv_error_t inv_9x_fusion_state_change(unsigned char newState);
  /frameworks/base/core/tests/coretests/src/android/os/storage/
StorageListener.java 34 public void onStorageStateChanged(String path, String oldState, String newState) {
35 if (localLOGV) Log.i(TAG, "Storage state changed from " + oldState + " to " + newState);
38 if (mTargetState.equals(newState)) {
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/
DictionaryListInterfaceState.java 54 final State newState;
56 newState = null == state ? new State() : state;
57 newState.mOpen = true;
58 newState.mStatus = status;
59 mWordlistToState.put(wordlistId, newState);
  /external/webkit/Source/WebCore/history/mac/
HistoryItemMac.mm 40 id newState = [statePList copy];
41 m_viewState = newState;
42 [newState release];
  /frameworks/base/core/java/android/app/backup/
AbsoluteFileBackupHelper.java 54 * need to be backed up, write them to the data stream, and fill in newState with the
58 ParcelFileDescriptor newState) {
60 performBackup_checked(oldState, data, newState, mFiles, mFiles);
BackupHelperDispatcher.java 46 ParcelFileDescriptor newState) throws IOException {
53 FileDescriptor newStateFD = newState.getFileDescriptor();
62 doOneBackup(oldState, data, newState, header, helper);
76 doOneBackup(oldState, data, newState, header, helper);
81 ParcelFileDescriptor newState, Header header, BackupHelper helper)
84 FileDescriptor newStateFD = newState.getFileDescriptor();
95 helper.performBackup(oldState, data, newState);
106 ParcelFileDescriptor newState)
139 helper.writeNewStateDescription(newState);
BackupHelper.java 42 * <code>data</code>, and fill in <code>newState</code> with the state as it
49 * written during this helper's previous backup operation, and the {@code newState}
54 * the {@code newState} file descriptors.</p>
64 * @param newState An open, read/write {@link android.os.ParcelFileDescriptor} pointing to an
70 ParcelFileDescriptor newState);
97 * <strong>Note:</strong> The helper should not close or seek the {@code newState}
100 * @param newState A {@link android.os.ParcelFileDescriptor} to which the new state will be
103 public void writeNewStateDescription(ParcelFileDescriptor newState);
FullBackupAgent.java 32 ParcelFileDescriptor newState) throws IOException {
37 public void onRestore(BackupDataInput data, int appVersionCode, ParcelFileDescriptor newState)
  /frameworks/base/core/java/android/bluetooth/
BluetoothHealthCallback.java 56 * @param newState The new state of the channel.
62 BluetoothDevice device, int prevState, int newState, ParcelFileDescriptor fd,
65 "prevState:" + prevState + "newState:" + newState + "ParcelFd:" + fd +
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
EventLogTags.logtags 46 50113 gsm_data_state_change (oldState|3), (newState|3)
49 50114 gsm_service_state_change (oldState|1|5), (oldGprsState|1|5), (newState|1|5), (newGprsState|1|5)
52 50115 cdma_data_state_change (oldState|3), (newState|3)
55 50116 cdma_service_state_change (oldState|1|5), (oldDataState|1|5), (newState|1|5), (newDataState|1|5)
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
IccCardApplicationStatus.java 132 AppState newState;
135 case 0: newState = AppState.APPSTATE_UNKNOWN; break;
136 case 1: newState = AppState.APPSTATE_DETECTED; break;
137 case 2: newState = AppState.APPSTATE_PIN; break;
138 case 3: newState = AppState.APPSTATE_PUK; break;
139 case 4: newState = AppState.APPSTATE_SUBSCRIPTION_PERSO; break;
140 case 5: newState = AppState.APPSTATE_READY; break;
142 newState = AppState.APPSTATE_UNKNOWN;
145 return newState;
  /external/libppp/src/
fsm.c 169 NewState(struct fsm *fp, int new)
250 NewState(fp, ST_REQSENT);
259 NewState(fp, ST_STARTING);
265 NewState(fp, ST_STOPPED); /* XXX: This is a hack ! */
270 NewState(fp, ST_STOPPED); /* XXX: This is a not-so-bad hack ! */
287 NewState(fp, ST_STOPPING);
299 NewState(fp, ST_CLOSED);
304 NewState(fp, ST_REQSENT);
318 NewState(fp, ST_INITIAL);
323 NewState(fp, ST_INITIAL)
    [all...]
  /cts/tests/tests/app/src/android/app/backup/cts/
BackupAgentTest.java 39 ParcelFileDescriptor newState) throws IOException {
44 ParcelFileDescriptor newState) throws IOException {
  /external/icu4c/layout/
ContextualGlyphSubstProc.cpp 42 ByteOffset newState = SWAPW(entry->newStateOffset);
72 return newState;
  /external/smack/src/org/jivesoftware/smackx/
ChatStateManager.java 110 * @param newState the new state of the chat
116 public void setCurrentState(ChatState newState, Chat chat) throws XMPPException {
117 if(chat == null || newState == null) {
120 if(!updateChatState(chat, newState)) {
124 ChatStateExtension extension = new ChatStateExtension(newState);
145 private boolean updateChatState(Chat chat, ChatState newState) {
147 if (lastChatState != newState) {
148 chatStates.put(chat, newState);
  /frameworks/base/core/java/android/os/storage/
IMountServiceListener.java 82 String newState;
83 newState = data.readString();
84 this.onStorageStateChanged(path, oldState, newState);
132 * @param newState The new state of the volume. Note: State is one
136 public void onStorageStateChanged(String path, String oldState, String newState)
144 _data.writeString(newState);
171 * @param newState The new state of the volume. Note: State is one of the
174 public void onStorageStateChanged(String path, String oldState, String newState)
MountServiceListener.java 38 * @param newState The new state of the volume.
42 void onStorageStateChange(String path, String oldState, String newState) {

Completed in 1114 milliseconds

1 2 3 4 5 6 7 8 91011>>