Searched refs:contents (Results 26 - 50 of 61) sorted by relevance

123

/frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
H A DSipCommandInterface.java404 public void sendTerminalResponse(String contents, Message response) { argument
408 public void sendEnvelope(String contents, Message response) { argument
412 public void sendEnvelopeWithStatus(String contents, Message response) { argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/volume/
H A DVolumeDialogMotion.java53 public VolumeDialogMotion(Dialog dialog, View dialogView, ViewGroup contents, View chevron, argument
57 mContents = contents;
/frameworks/data-binding/compiler/src/main/java/android/databinding/annotationprocessor/
H A DProcessExpressions.java216 public void addEntry(String name, String contents) { argument
217 mLayoutInfoMap.put(name, contents);
246 * we need to update its contents from the class that overrides it.
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/
H A DMakeCopy.java243 public void writeToFile(String canonicalName, String contents) { argument
250 writer.write(contents);
/frameworks/opt/vcard/tests/src/com/android/vcard/tests/testutils/
H A DVCardVerifier.java228 public void addVCardExceptionVerifier(String contents) { argument
229 mExceptionContents = contents;
254 // exception contents exists, we expect an exception to occur.
/frameworks/base/core/java/android/os/
H A DFileUtils.java259 * @return the contents of the file, possibly truncated
300 ByteArrayOutputStream contents = new ByteArrayOutputStream();
305 if (len > 0) contents.write(data, 0, len);
307 return contents.toString();
/frameworks/base/services/core/java/com/android/server/
H A DLockSettingsStorage.java284 byte[] contents = readFile(name);
285 return contents != null && contents.length > 0;
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
H A DImsPhoneCommandInterface.java403 public void sendTerminalResponse(String contents, Message response) { argument
407 public void sendEnvelope(String contents, Message response) { argument
411 public void sendEnvelopeWithStatus(String contents, Message response) { argument
/frameworks/base/libs/androidfw/
H A DBackupHelpers.cpp863 unsigned char* contents = (unsigned char*)malloc(len); local
864 if (contents == NULL) {
878 amt = read(fd, contents, readLen);
885 if (data[i] != contents[i]) {
887 fprintf(stderr, "compare_file contents are different: (index, expected, actual)\n");
890 fprintf(stderr, " [%-2d] %02x %02x\n", i, data[i], contents[i]);
894 free(contents);
1428 SCRATCH_DIR "data/e", // different contents (same mod time, same size)
1437 "data/e", // different contents (same mod time, same size)
H A DAssetManager.cpp1311 * Scan the contents of the specified directory and merge them into the
1437 * Scan the contents of the specified directory, and stuff what we find
1499 * Scan the contents out of the specified Zip archive, and merge what we
1511 SortedVector<AssetDir::FileInfo> contents; local
1528 * the Zip table of contents are not in sorted order, so we have to
1578 contents.add(info);
1609 contents.add(info);
1612 mergeInfoLocked(pMergedInfo, &contents);
1621 * The merged contents will be stuffed into *pMergedInfo.
1643 * contents o
[all...]
/frameworks/base/core/tests/coretests/src/android/os/storage/
H A DStorageManagerBaseTest.java88 assertTrue("path to contents file cannot be null!", pathToContentsFile != null);
456 * Helper to validate the contents of an "int" file in an OBB.
489 * Helper to validate the contents of a text file in an OBB
493 * @param contents A {@link String} containing the expected contents of the file
495 protected void doValidateTextContents(String path, String filename, String contents) { argument
502 textReader = new BufferedReader(new StringReader(contents));
520 * Helper to validate the contents of a "long" file on our OBBs
527 * @param checkContents If true, the contents of the file are actually verified; if false,
559 * @return The mounted path of the OBB, used to access contents i
[all...]
/frameworks/native/include/input/
H A DKeyCharacterMap.h77 /* Loads a key character map from its string contents. */
79 const char* contents, Format format, sp<KeyCharacterMap>* outMap);
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/unit/
H A DCameraMetadataTest.java897 int[] contents = new int[] {
906 mMetadata.writeValues(key.getTag(), toByteArray(contents));
933 new ReprocessFormatsMap(contents),
934 toByteArray(contents)
/frameworks/base/core/java/android/app/backup/
H A DBackupAgent.java221 * existing data with the contents of the backup. The backup data is
254 * The application is having its entire file system contents backed up. {@code data}
265 * <li>The contents of the {@link #getCacheDir()} directory</li>
266 * <li>The contents of the {@link #getCodeCacheDir()} directory</li>
267 * <li>The contents of the {@link #getNoBackupFilesDir()} directory</li>
268 * <li>The contents of the app's shared library directory</li>
488 * Write an entire file as part of a full-backup operation. The file's contents
671 // If it's a directory, enqueue its contents for scanning.
673 File[] contents = file.listFiles();
674 if (contents !
[all...]
/frameworks/base/core/java/android/util/apk/
H A DApkSignatureSchemeV2Verifier.java196 * Verifies the contents of the provided APK file against the provided APK Signature Scheme v2
355 + " contents digest does not match the digest specified by a preceding signer");
407 // avoid wasting physical memory. In most APK verification scenarios, the contents of the
436 throw new SecurityException("Failed to compute digest(s) of contents", e);
445 + " digest of contents did not verify");
452 DataSource[] contents) throws DigestException {
454 // 1. Each segment of contents is split into consecutive chunks of 1 MB in size.
458 // length in bytes (uint32 little-endian) and the chunk's contents.
464 for (DataSource input : contents) {
503 for (DataSource input : contents) {
450 computeContentDigests( int[] digestAlgorithms, DataSource[] contents) argument
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DCommandsInterface.java1443 * @param contents String containing SAT/USAT response in hexadecimal
1448 public void sendTerminalResponse(String contents, Message response); argument
1454 * @param contents String containing SAT/USAT response in hexadecimal
1459 public void sendEnvelope(String contents, Message response); argument
1470 * @param contents String containing SAT/USAT response in hexadecimal
1475 public void sendEnvelopeWithStatus(String contents, Message response); argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/test/
H A DSimulatedCommandsVerifier.java1062 public void sendTerminalResponse(String contents, Message response) { argument
1067 public void sendEnvelope(String contents, Message response) { argument
1072 public void sendEnvelopeWithStatus(String contents, Message response) { argument
H A DSimulatedCommands.java872 public void sendTerminalResponse(String contents, Message response) { argument
880 public void sendEnvelope(String contents, Message response) { argument
888 public void sendEnvelopeWithStatus(String contents, Message response) { argument
/frameworks/native/vulkan/libvulkan/
H A Dapi_gen.cpp413 VKAPI_ATTR void CmdBeginRenderPass(VkCommandBuffer commandBuffer, const VkRenderPassBeginInfo* pRenderPassBegin, VkSubpassContents contents);
414 VKAPI_ATTR void CmdNextSubpass(VkCommandBuffer commandBuffer, VkSubpassContents contents);
1142 VKAPI_ATTR void CmdBeginRenderPass(VkCommandBuffer commandBuffer, const VkRenderPassBeginInfo* pRenderPassBegin, VkSubpassContents contents) { argument
1143 GetData(commandBuffer).dispatch.CmdBeginRenderPass(commandBuffer, pRenderPassBegin, contents);
1146 VKAPI_ATTR void CmdNextSubpass(VkCommandBuffer commandBuffer, VkSubpassContents contents) { argument
1147 GetData(commandBuffer).dispatch.CmdNextSubpass(commandBuffer, contents);
1878 VKAPI_ATTR void vkCmdBeginRenderPass(VkCommandBuffer commandBuffer, const VkRenderPassBeginInfo* pRenderPassBegin, VkSubpassContents contents) { argument
1879 vulkan::api::CmdBeginRenderPass(commandBuffer, pRenderPassBegin, contents);
1883 VKAPI_ATTR void vkCmdNextSubpass(VkCommandBuffer commandBuffer, VkSubpassContents contents) { argument
1884 vulkan::api::CmdNextSubpass(commandBuffer, contents);
[all...]
/frameworks/base/core/jni/
H A Dandroid_os_Debug.cpp1049 jint limit, jboolean contents)
1051 std::string s = GetUnreachableMemoryString(contents, limit);
1048 android_os_Debug_getUnreachableMemory(JNIEnv* env, jobject clazz, jint limit, jboolean contents) argument
/frameworks/native/services/surfaceflinger/DisplayHardware/
H A DHWC2On1Adapter.h131 void operator()(struct hwc_display_contents_1* contents);
235 void setReceivedContents(HWC1Contents contents);
/frameworks/native/vulkan/nulldrv/
H A Dnull_driver_gen.h164 VKAPI_ATTR void CmdBeginRenderPass(VkCommandBuffer commandBuffer, const VkRenderPassBeginInfo* pRenderPassBegin, VkSubpassContents contents);
165 VKAPI_ATTR void CmdNextSubpass(VkCommandBuffer commandBuffer, VkSubpassContents contents);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
H A DUiccCard.java628 public void sendEnvelopeWithStatus(String contents, Message response) { argument
629 mCi.sendEnvelopeWithStatus(contents, response);
/frameworks/base/core/java/android/os/storage/
H A DIMountService.java490 * contents. MountService will call back to the supplied
1892 String contents = data.readString();
1893 setField(field, contents);
1900 String contents = getField(field);
1902 reply.writeString(contents);
2243 * only allows the calling process's UID access to the contents.
2420 * @param contents contents to set in field
2422 public void setField(String field, String contents) throws RemoteException; argument
2427 * @return contents o
[all...]
/frameworks/rs/api/
H A Drs_graphics.spec218 summary: Sync the contents of an allocation
220 Sync the contents of an allocation.

Completed in 8927 milliseconds

123