HomeSort by relevance Sort by last modified time
    Searched full:newstate (Results 26 - 50 of 498) sorted by null

12 3 4 5 6 7 8 91011>>

  /cts/tests/tests/app/src/android/app/backup/cts/
BackupAgentTest.java 39 ParcelFileDescriptor newState) throws IOException {
44 ParcelFileDescriptor newState) throws IOException {
  /external/chromium_org/third_party/WebKit/Source/core/svg/properties/
SVGPropertyInfo.h 63 SVGPropertyInfo(AnimatedPropertyType newType, AnimatedPropertyState newState, const QualifiedName& newAttributeName,
67 , animatedPropertyState(newState)
  /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/app/backup/
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)
BackupAgentHelper.java 65 ParcelFileDescriptor newState) throws IOException {
66 mDispatcher.performBackup(oldState, data, newState);
73 public void onRestore(BackupDataInput data, int appVersionCode, ParcelFileDescriptor newState)
75 mDispatcher.performRestore(data, appVersionCode, 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) {
StorageEventListener.java 36 * @param newState the old state as returned by {@link android.os.Environment#getExternalStorageState()}.
38 public void onStorageStateChanged(String path, String oldState, String newState) {
  /packages/apps/Calendar/src/com/android/calendar/
CalendarBackupAgent.java 39 public void onRestore(BackupDataInput data, int appVersionCode, ParcelFileDescriptor newState)
47 super.onRestore(data, appVersionCode, newState);
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/
BluetoothToggleActivity.java 126 int newState = intent.getIntExtra(BluetoothAdapter.EXTRA_STATE, -1);
127 Log.i(TAG, "Previous state: " + previousState + " New state: " + newState);
129 if (BluetoothAdapter.STATE_OFF == newState
135 if (BluetoothAdapter.STATE_ON == newState
141 if (BluetoothAdapter.STATE_OFF == newState) {
  /external/chromium_org/third_party/libjingle/source/talk/base/
task.cc 212 int newstate = STATE_ERROR; local
216 newstate = OnTimeout();
221 newstate = STATE_START;
224 newstate = ProcessStart();
227 newstate = ProcessResponse();
231 newstate = STATE_BLOCKED;
236 return newstate;
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
NFAFactory.java 67 public NFAState newState() {
119 NFAState left = newState();
120 NFAState right = newState();
137 NFAState left = newState();
138 NFAState right = newState();
164 NFAState left = newState();
165 NFAState right = newState();
201 NFAState first = newState();
206 NFAState next = newState();
235 NFAState left = newState();
    [all...]
  /frameworks/av/services/camera/libcameraservice/common/
Camera2ClientBase.cpp 244 void Camera2ClientBase<TClientBase>::notifyAutoFocus(uint8_t newState,
246 (void)newState;
250 __FUNCTION__, newState, triggerId);
255 void Camera2ClientBase<TClientBase>::notifyAutoExposure(uint8_t newState,
257 (void)newState;
261 __FUNCTION__, newState, triggerId);
265 void Camera2ClientBase<TClientBase>::notifyAutoWhitebalance(uint8_t newState,
267 (void)newState;
271 __FUNCTION__, newState, triggerId);
Camera2ClientBase.h 67 virtual void notifyAutoFocus(uint8_t newState, int triggerId);
68 virtual void notifyAutoExposure(uint8_t newState, int triggerId);
69 virtual void notifyAutoWhitebalance(uint8_t newState,
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/java/src/org/webrtc/
MediaStreamTrack.java 63 public boolean setState(State newState) {
64 return nativeSetState(nativeTrack, newState.ordinal());
83 long nativeTrack, int newState);
  /packages/apps/InCallUI/src/com/android/incallui/
InCallPresenter.java 226 InCallState newState = getPotentialStateFromCallList(callList);
227 newState = startOrFinishUi(newState);
231 if (!newState.isIncoming()) {
236 Log.i(this, "Phone switching state: " + mInCallState + " -> " + newState);
237 mInCallState = newState;
259 InCallState newState = startOrFinishUi(InCallState.INCOMING);
261 Log.i(this, "Phone switching state: " + mInCallState + " -> " + newState);
262 mInCallState = newState;
265 if (newState.isIncoming())
    [all...]
  /development/samples/BackupRestore/src/com/example/android/backuprestore/
FileHelperExampleAgent.java 78 ParcelFileDescriptor newState) throws IOException {
81 super.onBackup(oldState, data, newState);
91 ParcelFileDescriptor newState) throws IOException {
95 super.onRestore(data, appVersionCode, newState);
  /device/lge/hammerhead/libsensors/
LightSensor.cpp 73 int newState = en ? 1 : 0;
76 if (newState != mEnabled) {
95 buf[0] = newState ? '1' : '0';
103 mEnabled = newState;
ProximitySensor.cpp 54 int newState = en ? 1 : 0;
57 if (newState != mEnabled) {
76 buf[0] = newState ? '1' : '0';
84 mEnabled = newState;
  /frameworks/base/core/java/android/bluetooth/
IBluetoothCallback.aidl 27 void onBluetoothStateChange(int prevState, int newState);
IBluetoothHealthCallback.aidl 30 in BluetoothDevice device, int prevState, int newState, in
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/service/
IPolicyService.aidl 22 void setAccountHoldFlag(long accountId, boolean newState);
  /external/chromium_org/chrome/common/extensions/api/
idle.json 27 "name": "newState",
56 "name": "newState",

Completed in 356 milliseconds

12 3 4 5 6 7 8 91011>>