Searched refs:output (Results 1 - 25 of 98) sorted by path

1234

/frameworks/base/core/java/android/app/backup/
H A DBackupAgent.java175 * output stream.
217 * file system trees to the output.
267 * @param output The destination to which the backed-up file data will be sent.
269 public final void fullBackupFile(File file, FullBackupDataOutput output) { argument
327 output.getData());
339 HashSet<String> excludes, FullBackupDataOutput output) {
379 output.getData());
452 // Not a supported output location? We need to consume the data
487 BackupDataOutput output = new BackupDataOutput(data.getFileDescriptor());
490 BackupAgent.this.onBackup(oldState, output, newStat
338 fullBackupFileTree(String packageName, String domain, String rootPath, HashSet<String> excludes, FullBackupDataOutput output) argument
[all...]
H A DFullBackup.java63 String linkdomain, String rootpath, String path, BackupDataOutput output);
72 * If the {@code mode} argument is negative, then the resulting output file will not
75 * @param data Socket supplying the data to be copied to the output file. If the
76 * output is a directory, this may be {@code null}.
82 * the output file or directory. If this parameter is negative then neither
85 * last modification time of the output file. if the {@code mode} parameter is
101 // Pull the data from the pipe, copying it to the output file, until we're done
62 backupToTar(String packageName, String domain, String linkdomain, String rootpath, String path, BackupDataOutput output) argument
/frameworks/base/core/java/android/content/
H A DContentProvider.java845 * @param output The pipe where data should be written. This will be
852 public void writeDataToPipe(ParcelFileDescriptor output, Uri uri, String mimeType, argument
/frameworks/base/core/java/android/content/pm/
H A DActivityInfo.java391 int output = 0;
394 output |= CONFIG_NATIVE_BITS[i];
397 return output;
H A DVerifierDeviceIdentity.java138 long output = 0L;
169 output = (output << 5) | value;
185 return output;
/frameworks/base/core/java/android/hardware/
H A DCamera.java1981 * video output; otherwise, null is returned.
3062 * @param output focus distances in meters. output must be a float
3069 public void getFocusDistances(float[] output) { argument
3070 if (output == null || output.length != 3) {
3072 "output must be an float array with three elements.");
3074 splitFloat(get(KEY_FOCUS_DISTANCES), output);
3232 * output. This should be called before starting preview for the best
3354 private void splitInt(String str, int[] output) { argument
3366 splitFloat(String str, float[] output) argument
[all...]
/frameworks/base/core/java/android/inputmethodservice/
H A DInputMethodService.java2242 String output = "changeInputMethodSubtype:"
2246 Log.v(TAG, "--- " + output);
/frameworks/base/core/java/android/text/
H A DHtml.java88 Editable output, XMLReader xmlReader);
279 // Don't output the dummy character underlying the image.
87 handleTag(boolean opening, String tag, Editable output, XMLReader xmlReader) argument
/frameworks/base/core/java/android/util/
H A DBase64.java35 * of the output (if any).
40 * Encoder flag bit to omit all line terminators (i.e., the output
62 * should not close the output stream it is wrapping when it
72 public byte[] output; field in class:Base64.Coder
76 * Encode/decode another block of input data. this.output is
83 * include any final bytes in the output.
111 * @param flags controls certain features of the decoded output.
129 * @param flags controls certain features of the decoded output.
149 * @param flags controls certain features of the decoded output.
164 // Maybe we got lucky and allocated exactly enough output spac
241 Decoder(int flags, byte[] output) argument
581 Encoder(int flags, byte[] output) argument
[all...]
H A DBase64InputStream.java70 coder.output = new byte[coder.maxOutputSize(BUFFER_SIZE)];
115 return coder.output[outputStart++] & 0xff;
127 System.arraycopy(coder.output, outputStart, b, off, bytes);
134 * decode/encode it into the empty coder.output, and reset the
H A DBase64OutputStream.java137 coder.output = embiggen(coder.output, coder.maxOutputSize(len));
141 out.write(coder.output, 0, coder.op);
H A DEventLog.java189 * @param output container to add events into
192 public static native void readEvents(int[] tags, Collection<Event> output) argument
/frameworks/base/core/java/android/view/
H A DView.java5239 * @param outViews The output list of matching Views.
6961 * Return the visible drawing bounds of your view. Fills in the output
11150 String output = "";
11153 output += "TAKES_FOCUS";
11160 output += " ";
11162 output += "INVISIBLE";
11167 output += " ";
11169 output += "GONE";
11175 return output;
11186 String output
[all...]
H A DViewDebug.java227 * A specified String is output when the following is true:
318 * Indicates whether to output the flag when the test is true,
361 * Defines the type of hierarhcy trace to output to the hierarchy traces file.
379 * Defines the type of recycler trace to output to the recycler traces file.
1704 String output = value.toString().replace("\n", "\\n");
1705 out.write(String.valueOf(output.length()));
1707 out.write(output);
H A DViewGroup.java4564 String output;
4567 output = debugIndent(depth);
4568 output += "mFocused";
4569 Log.d(VIEW_LOG_TAG, output);
4572 output = debugIndent(depth);
4573 output += "{";
4574 Log.d(VIEW_LOG_TAG, output);
4583 output = debugIndent(depth);
4584 output += "}";
4585 Log.d(VIEW_LOG_TAG, output);
5346 debug(String output) argument
[all...]
H A DWindowManager.java1416 public String debug(String output) { argument
1417 output += "Contents of " + this + ":";
1418 Log.d("Debug", output);
1419 output = super.debug("");
1420 Log.d("Debug", output);
/frameworks/base/core/java/android/widget/
H A DAbsoluteLayout.java217 public String debug(String output) { argument
218 return output + "Absolute.LayoutParams={width="
H A DLinearLayout.java1824 public String debug(String output) { argument
1825 return output + "LinearLayout.LayoutParams={width=" + sizeToString(width) +
H A DRelativeLayout.java1151 public String debug(String output) { argument
1152 return output + "ViewGroup.LayoutParams={ width=" + sizeToString(width) +
H A DTextView.java7128 String output = debugIndent(depth);
7129 output += "frame={" + mLeft + ", " + mTop + ", " + mRight
7135 output += "mText=\"" + mText + "\" ";
7137 output += "mLayout width=" + mLayout.getWidth()
7141 output += "mText=NULL";
7143 Log.d(VIEW_LOG_TAG, output);
/frameworks/base/core/tests/coretests/src/android/app/
H A DDownloadManagerBaseTest.java613 DataOutputStream output = new DataOutputStream(new FileOutputStream(file));
632 output.write(randomData);
641 output.close();
/frameworks/base/core/tests/coretests/src/android/util/
H A DBase64Test.java243 byte[] output = new byte[100];
246 output);
249 assertEquals("YWJj".getBytes(), 4, encoder.output, encoder.op);
253 assertEquals("YWJj".getBytes(), 4, encoder.output, encoder.op);
265 assertEquals("YWFh".getBytes(), 4, encoder.output, encoder.op);
273 assertEquals("YWJh".getBytes(), 4, encoder.output, encoder.op);
277 assertEquals("YmFi".getBytes(), 4, encoder.output, encoder.op);
281 assertEquals("YQ".getBytes(), 2, encoder.output, encoder.op);
/frameworks/base/core/tests/coretests/src/com/android/internal/http/multipart/
H A DMultipartTest.java60 StringBuffer output = new StringBuffer();
62 output.append("--");
63 output.append(boundry);
64 output.append(CRLF);
66 output.append("Content-Disposition: form-data; name=\"stringpart\"");
67 output.append(CRLF);
68 output.append("Content-Type: text/plain; charset=US-ASCII");
69 output.append(CRLF);
70 output.append("Content-Transfer-Encoding: 8bit");
71 output
[all...]
/frameworks/base/core/tests/hosttests/src/android/content/pm/
H A DPackageManagerHostTestUtils.java132 * @throws ShellCommandUnresponsiveException if the device did not output anything for
133 * a period longer than the max time to output.
187 * @throws ShellCommandUnresponsiveException if the device did not output anything for
188 * a period longer than the max time to output.
229 * @return the string output of the failed install attempt
246 * @throws ShellCommandUnresponsiveException if the device did not output anything for
247 * a period longer than the max time to output.
271 * @throws ShellCommandUnresponsiveException if the device did not output anything for
272 * a period longer than the max time to output.
289 * @throws ShellCommandUnresponsiveException if the device did not output anythin
[all...]
/frameworks/base/drm/libdrmframework/plugins/forward-lock/FwdLockEngine/include/
H A DFwdLockEngine.h287 * the output converted data and offset. In this case the
509 FwdLockConv_Output_t output; member in class:android::FwdLockEngine::ConvertSession
513 memset(&output, 0, sizeof(FwdLockConv_Output_t));

Completed in 344 milliseconds

1234