Searched refs:update (Results 151 - 175 of 266) sorted by relevance

1234567891011

/frameworks/base/cmds/screencap/
H A Dscreencap.cpp189 status_t result = screenshot.update(display, Rect(), 0, 0, 0, -1U,
/frameworks/base/core/java/android/app/backup/
H A DBlobBackupHelper.java214 crc.update(buf, 0, nRead);
/frameworks/base/core/java/android/content/
H A DAsyncQueryHandler.java100 args.result = resolver.update(args.uri, args.values, args.selection,
224 * This method begins an asynchronous update. When the update operation is
228 * the update operation.
230 * @param uri the Uri passed to the update operation.
231 * @param values the ContentValues parameter passed to the update operation.
304 * Called when an asynchronous update is completed.
310 * @param result the result returned from the update operation
H A DSearchRecentSuggestionsProvider.java53 * <li>In order for the Content Resolver to do this, you must update your searchable activity's
89 // Table of database versions. Don't forget to update!
393 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) { method in class:SearchRecentSuggestionsProvider
/frameworks/base/core/java/android/provider/
H A DContacts.java230 cr.update(Settings.CONTENT_URI, values, null, null);
451 // There is a trigger in place that will update TIMES_CONTACTED when
454 resolver.update(uri, values, null, null);
595 cr.update(photoUri, values, null, null);
1340 //NOTE: update Contacts.java with new providers when they're added.
1444 * @param postalId the address to update
1463 resolver.update(ContentUris.withAppendedId(CONTENT_URI, postalId), values, null, null);
H A DVoicemailContract.java484 contentResolver.update(statusUri, values, null, null);
/frameworks/base/keystore/java/android/security/keystore/
H A DAndroidKeyStoreSignatureSpiBase.java271 output = mMessageStreamer.update(b, off, len);
H A DAndroidKeyStoreCipherSpiBase.java336 output = mMainDataStreamer.update(input, inputOffset, inputLen);
364 "AAD update unexpectedly returned data: " + output.length + " bytes");
406 "AAD can only be provided before Cipher.update is invoked");
415 output = mAdditionalAuthenticationDataStreamer.update(input, inputOffset, inputLen);
422 throw new ProviderException("AAD update unexpectedly produced output: "
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/wifi/
H A DAccessPoint.java154 update(mConfig, mInfo, mNetworkInfo);
714 boolean update(ScanResult result) { method in class:AccessPoint
719 /* Add or update the scan result for the BSSID */
745 boolean update(WifiConfiguration config, WifiInfo info, NetworkInfo networkInfo) { method in class:AccessPoint
766 void update(WifiConfiguration config) { method in class:AccessPoint
/frameworks/base/packages/SettingsProvider/test/src/com/android/providers/settings/
H A DBaseSettingsProviderTest.java136 return getContext().getContentResolver().update(uri, values, "name=?",
/frameworks/base/services/core/java/com/android/server/notification/
H A DNotificationManagerService.java470 void update(int duration) { method in class:NotificationManagerService.ToastRecord
782 mSettingsObserver.update(null);
809 update(null);
813 update(uri);
816 public void update(Uri uri) { method in class:NotificationManagerService.SettingsObserver
1015 // This observer will force an update when observe is called, causing us to
1093 // If it's already in the queue, we update it in place, we don't
1097 record.update(duration);
2251 // Clear out group children of the old notification if the update
3251 final NotificationRankingUpdate update;
[all...]
/frameworks/base/services/core/java/com/android/server/power/
H A DWirelessChargerDetector.java182 public boolean update(boolean isPowered, int plugType, int batteryLevel) { method in class:WirelessChargerDetector
/frameworks/base/telecomm/java/android/telecom/
H A DLog.java146 messageDigest.update(input);
/frameworks/base/wifi/java/android/net/wifi/p2p/
H A DWifiP2pDevice.java271 public void update(WifiP2pDevice device) { method in class:WifiP2pDevice
/frameworks/ex/common/java/com/android/common/content/
H A DSQLiteContentProvider.java74 * The equivalent of the {@link #update} method, but invoked within a transaction.
148 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) { method in class:SQLiteContentProvider
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
H A DImsPhoneCall.java327 update (ImsPhoneConnection conn, ImsCall imsCall, State state) { method in class:ImsPhoneCall
/frameworks/opt/telephony/src/java/com/google/android/mms/pdu/
H A DPduPersister.java762 // After successfully store the data, we should update
802 if (mContentResolver.update(uri, cv, null, null) != 1) {
803 throw new MmsException("unable to update " + uri.toString());
915 SqliteWrapper.update(mContext, mContentResolver,
1088 SqliteWrapper.update(mContext, mContentResolver, uri, values, null, null);
1134 SqliteWrapper.update(mContext, mContentResolver, uri, values, null, null);
1136 // Only update the data when:
1426 SqliteWrapper.update(mContext, mContentResolver, res, values, null, null);
1432 // Get the real ID of the PDU and update all parts which were
1439 SqliteWrapper.update(mContex
[all...]
/frameworks/base/keystore/tests/src/android/security/
H A DKeyStoreTest.java816 result = mKeyStore.update(token, null, new byte[] {0x01, 0x02, 0x03, 0x04});
825 OperationResult result = mKeyStore.update(token, null, new byte[] {0x01});
847 result = mKeyStore.update(token, null, in);
924 mKeyStore.update(first, null, new byte[] {0x01}).resultCode);
946 result = mKeyStore.update(token, null, new byte[] {0x01, 0x02, 0x03, 0x04});
/frameworks/base/media/java/android/media/
H A DWebVttRenderer.java1258 cueBox.update();
1605 cueBox.update();
1700 update();
1720 public void update() { method in class:WebVttRenderingWidget.CueLayout
1836 update();
1839 public void update() { method in class:WebVttRenderingWidget.SpanLayout
/frameworks/base/core/java/android/app/
H A DActivityOptions.java783 public void update(ActivityOptions otherOptions) { method in class:ActivityOptions
953 result.update(this);
/frameworks/base/keystore/java/android/security/
H A DKeyStore.java71 * per-operation authentication and must authenticate before calling {@link #update} or
471 public OperationResult update(IBinder token, KeymasterArguments arguments, byte[] input) { method in class:KeyStore
473 return mBinder.update(token, arguments, input);
/frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
H A DSettingsState.java225 if (!oldState.update(value, packageName)) {
593 public boolean update(String value, String packageName) { method in class:SettingsState.Setting
/frameworks/opt/net/ims/src/java/com/android/ims/internal/
H A DImsCallSession.java232 * Called when the session update is failed.
235 * @param reasonInfo detailed reason of the session update failure
242 * Called when the session update is received from the remote user.
677 * Accepts an incoming call or session update.
695 * Rejects an incoming call or session update.
786 public void update(int callType, ImsStreamMediaProfile profile) { method in class:ImsCallSession
792 miSession.update(callType, profile);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
H A DCdmaConnection.java321 * but no response has yet been received so update() has not yet been called
451 update (DriverCall dc) { method in class:CdmaConnection
464 if (Phone.DEBUG_PHONE) log("update: phone # changed!");
493 parentStateChange = mParent.update (this, dc);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
H A DGsmConnection.java291 * but no response has yet been received so update() has not yet been called
419 update (DriverCall dc) { method in class:GsmConnection
429 if (Phone.DEBUG_PHONE) log("update: mOrigConnection is not null");
434 if (Phone.DEBUG_PHONE) log("update: phone # changed!");
464 parentStateChange = mParent.update (this, dc);
471 "update: parent=" + mParent +

Completed in 2109 milliseconds

1234567891011