/frameworks/base/obex/javax/obex/ |
ServerRequestHandler.java | 61 * be called by the implementation. To differentiate between a normal PUT 64 * <code>onPut()</code> method. For a PUT request, the application will be able 207 * Called when a PUT request is received. 213 * If an ABORT request is received during the processing of a PUT request,
|
/frameworks/base/telephony/java/com/android/internal/telephony/gsm/ |
SpnOverride.java | 85 CarrierSpnMap.put(numeric, data);
|
VoiceMailConstants.java | 107 CarrierVmMap.put(numeric, data);
|
/frameworks/base/tests/CoreTests/android/core/ |
HashMapPerfTest.java | 73 map.put(s.getId(), s);
|
/frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/ |
CallbackProxy.java | 292 map.put("character", character); 293 map.put("withModifiers", withModifiers); 421 map.put("Url", Url); 422 map.put("frameTarget", frameTarget);
|
/frameworks/base/tests/backup/ |
backup_stress_test.sh | 24 # make sure that we have a place to put logs and bugreports
|
/hardware/libhardware_legacy/include/hardware_legacy/ |
AudioHardwareInterface.h | 85 * Put the audio hardware output into standby mode. Returns 98 // The audio flinger will put the output in standby and then change the parameter value. 147 * Put the audio hardware input into standby mode. Returns 157 // The audio flinger will put the input in standby and then change the parameter value.
|
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/ |
BluetoothOppUtility.java | 231 updateValues.put(BluetoothShare.VISIBILITY, BluetoothShare.VISIBILITY_HIDDEN); 291 values.put(BluetoothShare.URI, transInfo.mFileUri); 292 values.put(BluetoothShare.MIMETYPE, transInfo.mFileType); 293 values.put(BluetoothShare.DESTINATION, transInfo.mDestAddr);
|
/packages/apps/Calendar/src/com/android/calendar/ |
AlertService.java | 184 if (!declined && eventIds.put(eventId, beginTime) == null) { 193 values.put(CalendarAlerts.RECEIVED_TIME, currentTime); 204 values.put(CalendarAlerts.STATE, newState); 211 values.put(CalendarAlerts.NOTIFY_TIME, currentTime);
|
/packages/apps/Contacts/res/layout-land-finger/ |
twelve_key_dialer.xml | 25 It's type is set to PHONE (to put the keyboard in the right
|
/packages/apps/Contacts/res/layout-long-land-finger/ |
twelve_key_dialer.xml | 25 It's type is set to PHONE (to put the keyboard in the right
|
/packages/apps/Contacts/src/com/android/contacts/model/ |
EntityDelta.java | 212 mEntries.put(mimeType, mimeEntries); 386 mValues.put(RawContacts.AGGREGATION_MODE, RawContacts.AGGREGATION_MODE_SUSPENDED); 529 entry.mAfter.put(entry.mIdColumn, sNextInsertId--); 658 public void put(String key, String value) { method in class:EntityDelta.ValuesDelta 660 mAfter.put(key, value); 663 public void put(String key, byte[] value) { method in class:EntityDelta.ValuesDelta 665 mAfter.put(key, value); 668 public void put(String key, int value) { method in class:EntityDelta.ValuesDelta 670 mAfter.put(key, value);
|
/packages/apps/Email/res/layout-land/ |
message_view.xml | 35 <!-- put invisible views for prev/next in order to not special-case the lanscape in code -->
|
/packages/apps/Email/tests/src/com/android/exchange/adapter/ |
EmailSyncAdapterTests.java | 141 values.put(Body.SOURCE_MESSAGE_KEY, msg2.mId); 179 cv.put(SyncColumns.SERVER_ID, "1:22"); 208 cv.put(SyncColumns.SERVER_ID, "1:22"); 255 cv.put(Message.FLAG_READ, 0);
|
/packages/apps/Gallery3D/src/com/cooliris/media/ |
DiskCache.java | 108 public void put(long key, byte[] data, long timestamp) { method in class:DiskCache 123 mIndexMap.put(key, new Record(currentChunk, record.offset, data.length, record.sizeOnDisk, timestamp)); 148 mIndexMap.put(key, new Record(chunk, offset, data.length, data.length, timestamp)); 346 mChunkFiles.put(chunk, chunkFile);
|
/packages/apps/IM/src/com/android/im/service/ |
RemoteImService.java | 183 settings.put(ImpsConfigNames.MSISDN, "15555218135"); 189 settings.put(ImpsConfigNames.SMS_AUTH, "true"); 190 settings.put(ImpsConfigNames.SECURE_LOGIN, "false"); 202 settings.put(ImpsConfigNames.MSISDN, msisdn);
|
/packages/apps/Mms/tests/src/com/android/mms/util/ |
SmileyParserUnitTests.java | 52 // Put a string that looks kind of like a smiley in between two valid smileys.
|
/packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/ |
MockCorpora.java | 44 Corpus oldCorpus = mCorporaByName.put(corpus.getName(), corpus);
|
/packages/apps/Settings/src/com/android/settings/ |
CredentialInstaller.java | 75 boolean success = mKeyStore.put(key.getBytes(), data);
|
/packages/apps/Settings/src/com/android/settings/bluetooth/ |
LocalBluetoothProfileManager.java | 68 sProfileMap.put(Profile.A2DP, profileManager); 71 sProfileMap.put(Profile.HEADSET, profileManager); 74 sProfileMap.put(Profile.OPP, profileManager); 96 * NOTE: This list happens to define the connection order. We should put this logic in a more
|
/packages/apps/Settings/src/com/android/settings/quicklaunch/ |
QuickLaunchSettings.java | 258 mShortcutToPreference.put(shortcut, pref); 276 shortcutSeen.put(shortcut, true); 331 newBookmarkedShortcuts.put(shortcut, true); 335 noLongerBookmarkedShortcuts.put(shortcut, false);
|
/prebuilt/sdk/tools/ |
Android.mk | 87 # $(BUILD_PREBUILT) here, because we must put dx.jar as dependecy of dx.
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle1/ |
PaletteFactory.java | 67 /* -- Do not put the selection tool. It's the unique tool so it looks useless.
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gre/ |
NodeFactory.java | 67 mNodeMap.put(uiNode, proxy);
|
/packages/apps/Email/src/com/android/email/ |
MessagingController.java | 178 private void put(String description, MessagingListener listener, Runnable runnable) { method in class:MessagingController 252 put("listFolders", listener, new Runnable() { 279 localFolders.put(info.mDisplayName, info); 364 put("synchronizeMailbox", listener, new Runnable() { 490 localMessageMap.put(info.mServerId, info); 560 remoteUidMap.put(message.getUid(), message); 679 updateValues.put(EmailContent.Message.FLAG_READ, remoteSeen); 680 updateValues.put(EmailContent.Message.FLAG_FAVORITE, remoteFlagged); 715 // updateValues.put(EmailContent.Mailbox.UNREAD_COUNT, remoteUnreadMessageCount); [all...] |