Searched refs:update (Results 101 - 125 of 159) sorted by relevance

1234567

/frameworks/base/services/java/com/android/server/power/
H A DWirelessChargerDetector.java168 public boolean update(boolean isPowered, int plugType, int batteryLevel) { method in class:WirelessChargerDetector
/frameworks/base/wifi/java/android/net/wifi/p2p/
H A DWifiP2pDevice.java264 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/native/opengl/libs/EGL/
H A Degl.cpp217 stack.update();
H A Dtrace.cpp438 s.update(); \
/frameworks/opt/mms/src/java/com/google/android/mms/pdu/
H A DPduPersister.java759 // After successfully store the data, we should update
796 if (mContentResolver.update(uri, cv, null, null) != 1) {
797 throw new MmsException("unable to update " + uri.toString());
909 SqliteWrapper.update(mContext, mContentResolver,
1082 SqliteWrapper.update(mContext, mContentResolver, uri, values, null, null);
1128 SqliteWrapper.update(mContext, mContentResolver, uri, values, null, null);
1130 // Only update the data when:
1406 SqliteWrapper.update(mContext, mContentResolver, res, values, null, null);
1412 // Get the real ID of the PDU and update all parts which were
1419 SqliteWrapper.update(mContex
[all...]
/frameworks/base/core/java/android/content/
H A DContentProviderNative.java203 int count = update(url, values, selection, selectionArgs);
493 public int update(Uri url, ContentValues values, String selection, method in class:ContentProviderProxy
H A DContentProviderOperation.java146 * Create a {@link Builder} suitable for building an update {@link ContentProviderOperation}.
147 * @param uri The {@link Uri} that is the target of the update.
225 numRows = provider.update(mUri, values, mSelection, selectionArgs);
445 * This can only be used with builders of type insert, update, or assert.
461 * This can only be used with builders of type insert, update, or assert.
479 * This can only be used with builders of type update, delete, or assert.
498 * This can only be used with builders of type insert, update, or assert.
514 * A value to insert or update. This value may be overwritten by
516 * This can only be used with builders of type insert, update, or assert.
560 * This can only be used with builders of type update, delet
[all...]
/frameworks/opt/telephony/src/java/android/provider/
H A DTelephony.java303 return 1 == SqliteWrapper.update(context, context.getContentResolver(),
428 return resolver.update(uri, values, null, null) == 1;
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
H A DCdmaConnection.java371 * but no response has yet been received so update() has not yet been called
483 update (DriverCall dc) { method in class:CdmaConnection
494 if (Phone.DEBUG_PHONE) log("update: phone # changed!");
523 parentStateChange = parent.update (this, dc);
/frameworks/av/media/libstagefright/codecs/amrwbenc/inc/
H A Dacelp.h284 Word16 update /* (i) : 0=no update, 1=update of memory. */
/frameworks/base/core/java/android/app/
H A DActivityOptions.java404 public void update(ActivityOptions otherOptions) { method in class:ActivityOptions
H A DDownloadManager.java935 return mResolver.update(ContentUris.withAppendedId(mBaseUri, ids[0]), values,
938 return mResolver.update(mBaseUri, values, getWhereClauseForIds(ids),
1088 mResolver.update(mBaseUri, values, getWhereClauseForIds(ids), getWhereArgsForIds(ids));
/frameworks/base/core/java/android/os/
H A DRecoverySystem.java122 * Verify the cryptographic signature of a system update package
282 sig.update(buffer, 0, read);
313 * Reboots the device in order to install the given update
318 * @param packageFile the update package to install. Must be on
/frameworks/base/core/java/android/view/
H A DTextureView.java388 // Since we are updating the layer, force an update to ensure its
446 mLayer.update(getWidth(), getHeight(), mOpaque);
/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DLoadAverageService.java65 mStats.update();
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DIccProvider.java249 public int update(Uri url, ContentValues values, String where, String[] whereArgs) { method in class:IccProvider
253 if (DBG) log("update");
/frameworks/base/wifi/java/android/net/wifi/
H A DWifiWatchdogStateMachine.java809 // update packet loss statistics
818 mCurrentLoss.update(loss, dtotal);
1005 * - volume-weighted: each update has its own weight (number of packets)
1006 * - exponential: O(1) time and O(1) space for both update and query
1022 public void update(double newValue, int newVolume) { method in class:WifiWatchdogStateMachine.VolumeWeightedEMA
1024 // core update formulas
1079 * @param volume is the volume for this single update
1085 mEntries[index].update(value, volume);
/frameworks/native/libs/gui/
H A DSurfaceComposerClient.cpp592 status_t ScreenshotClient::update(const sp<IBinder>& display) { function in class:android::ScreenshotClient
601 status_t ScreenshotClient::update(const sp<IBinder>& display, function in class:android::ScreenshotClient
611 status_t ScreenshotClient::update(const sp<IBinder>& display, function in class:android::ScreenshotClient
/frameworks/base/services/java/com/android/server/
H A DNotificationManagerService.java395 void update(int duration) { method in class:NotificationManagerService.ToastRecord
590 update();
594 update();
597 public void update() { method in class:NotificationManagerService.SettingsObserver
720 // If it's already in the queue, we update it in place, we don't
724 record.update(duration);
/frameworks/base/cmds/content/src/com/android/commands/content/
H A DContent.java33 * can insert, update, and remove records in a content provider. For example,
46 * adb shell content update --uri content://settings/secure --bind value:s:newer_value
80 + "usage: adb shell content update --uri <URI> [--user <USER_ID>] [--where <WHERE>]\n"
85 + " adb shell content update --uri content://settings/secure --bind"
110 private static final String ARGUMENT_UPDATE = "update";
454 provider.update(mUri, mContentValues, mWhere, null);
/frameworks/base/core/java/android/provider/
H A DBrowser.java326 cr.update(ContentUris.withAppendedId(History.CONTENT_URI, c.getLong(0)),
/frameworks/base/core/java/android/webkit/
H A DWebViewDatabaseClassic.java51 // and update the form data table to use the new format
200 sDatabase.update(mTableNames[TABLE_FORMURL_ID], cv, ID_COL + "=?",
/frameworks/base/packages/WAPPushManager/src/com/android/smspush/
H A DWapPushManager.java40 * WapPushManager can update the WAP Push message and Receiver Application
322 int num = db.update(APPID_TABLE_NAME, values, where, null);
323 if (LOCAL_LOGV) Log.v(LOG_TAG, "update:" + x_app_id + ":" + content_type + " "
/frameworks/native/libs/binder/
H A DIMemory.cpp250 stack.update();

Completed in 2176 milliseconds

1234567