Searched defs:output (Results 51 - 75 of 178) sorted by path

12345678

/frameworks/base/core/java/android/util/
H A DEventLog.java289 * @param output container to add events into
292 public static native void readEvents(int[] tags, Collection<Event> output) argument
299 * @param output container to add events into
305 Collection<Event> output)
304 readEventsOnWrapping(int[] tags, long timestamp, Collection<Event> output) argument
/frameworks/base/core/java/android/view/
H A DRenderNode.java780 * tools to output display lists for selected nodes to the log.
782 public void output() { method in class:RenderNode
H A DViewGroup.java6433 String output;
6436 output = debugIndent(depth);
6437 output += "mFocused";
6438 Log.d(VIEW_LOG_TAG, output);
6442 output = debugIndent(depth);
6443 output += "mDefaultFocus";
6444 Log.d(VIEW_LOG_TAG, output);
6448 output = debugIndent(depth);
6449 output += "mFocusedInCluster";
6450 Log.d(VIEW_LOG_TAG, output);
7558 debug(String output) argument
[all...]
H A DWindowManager.java2373 public String debug(String output) { argument
2374 output += "Contents of " + this + ":";
2375 Log.d("Debug", output);
2376 output = super.debug("");
2377 Log.d("Debug", output);
/frameworks/base/core/java/android/widget/
H A DAbsoluteLayout.java220 public String debug(String output) { argument
221 return output + "Absolute.LayoutParams={width="
H A DLinearLayout.java2037 public String debug(String output) { argument
2038 return output + "LinearLayout.LayoutParams={width=" + sizeToString(width) +
H A DRelativeLayout.java1397 public String debug(String output) { argument
1398 return output + "ViewGroup.LayoutParams={ width=" + sizeToString(width) +
/frameworks/base/core/java/com/android/server/backup/
H A DAccountSyncSettingsBackupHelper.java91 * Take a snapshot of the current account sync settings and write them to the given output.
94 public void performBackup(ParcelFileDescriptor oldState, BackupDataOutput output, argument
109 output.writeEntityHeader(JSON_FORMAT_HEADER_KEY, dataSize);
110 output.writeEntityData(dataBytes, dataSize);
/frameworks/base/core/jni/
H A Dandroid_os_VintfObject.cpp71 std::set<std::string> *output) {
76 output->insert(names.begin(), names.end());
69 tryAddHalNamesAndVersions(const HalManifest *manifest, const std::string& description, std::set<std::string> *output) argument
/frameworks/base/graphics/java/android/graphics/pdf/
H A DPdfEditor.java152 * @param outSize The size output.
168 * @param outMediaBox The media box output.
200 * @param outCropBox The crop box output.
247 * @param output The destination.
249 public void write(ParcelFileDescriptor output) throws IOException { argument
254 nativeWrite(mNativeDocument, output.getFd());
257 IoUtils.closeQuietly(output);
/frameworks/base/keystore/java/android/security/keystore/
H A DAndroidKeyStoreCipherSpiBase.java335 byte[] output;
338 output = mMainDataStreamer.update(input, inputOffset, inputLen);
344 if (output.length == 0) {
348 return output;
354 byte[] output;
356 output = mAdditionalAuthenticationDataStreamer.doFinal(
364 if ((output != null) && (output.length > 0)) {
366 "AAD update unexpectedly returned data: " + output.length + " bytes");
372 protected final int engineUpdate(byte[] input, int inputOffset, int inputLen, byte[] output, argument
388 engineUpdate(ByteBuffer input, ByteBuffer output) argument
528 engineDoFinal(byte[] input, int inputOffset, int inputLen, byte[] output, int outputOffset) argument
545 engineDoFinal(ByteBuffer input, ByteBuffer output) argument
[all...]
/frameworks/base/libs/hwui/
H A DDisplayList.cpp131 void DisplayList::output(std::ostream& output, uint32_t level) { argument
133 OpDumper::dump(*op, output, level + 1);
136 rnOp->renderNode->output(output, level + 1);
138 output << std::endl;
H A DOpDumper.cpp28 void OpDumper::dump(const RecordedOp& op, std::ostream& output, int level) { argument
30 output << " ";
35 output << sOpNameLut[op.opId] << " " << localBounds;
39 output << std::fixed << std::setprecision(0)
44 output << " iwr";
H A DRenderNode.cpp83 void RenderNode::output() { function in class:android::uirenderer::RenderNode
86 output(strout, 0);
89 void RenderNode::output(std::ostream& output, uint32_t level) { argument
90 output << " (" << getName() << " " << this
98 properties().debugOutputProperties(output, level + 1);
101 mDisplayList->output(output, level);
103 output << std::string(level * 2, ' ') << "/RenderNode(" << getName() << " " << this << ")";
104 output << st
[all...]
H A DRenderProperties.cpp102 static void dumpMatrix(std::ostream& output, std::string& indent, argument
105 output << indent << "(" << label << " " << matrix << ": ";
106 output << std::fixed << std::setprecision(2);
107 output << "[" << matrix->get(0) << " "<< matrix->get(1) << " " << matrix->get(2) << "]";
108 output << " [" << matrix->get(3) << " "<< matrix->get(4) << " " << matrix->get(5) << "]";
109 output << " [" << matrix->get(6) << " "<< matrix->get(7) << " " << matrix->get(8) << "]";
110 output << ")" << std::endl;
114 void RenderProperties::debugOutputProperties(std::ostream& output, const int level) const { argument
117 output << indent << "(Translate (left, top) " << mPrimitiveFields.mLeft
120 dumpMatrix(output, inden
[all...]
/frameworks/base/libs/hwui/font/
H A DCacheTexture.h63 void output() { function in struct:android::uirenderer::CacheBlock
/frameworks/base/libs/hwui/pipeline/skia/
H A DDumpOpsCanvas.h31 DumpOpsCanvas(std::ostream& output, int level, SkiaDisplayList& displayList) argument
32 : mOutput(output)
146 renderNodeDrawable->getRenderNode()->output(mOutput, mLevel + 1);
H A DSkiaDisplayList.cpp116 void SkiaDisplayList::output(std::ostream& output, uint32_t level) { argument
117 DumpOpsCanvas canvas(output, level, *this);
/frameworks/base/libs/hwui/service/
H A DGraphicsStatsService.cpp49 bool GraphicsStatsService::parseFromFile(const std::string& path, service::GraphicsStatsProto* output) { argument
71 bool success = output->ParseFromZeroCopyStream(&input);
78 path.c_str(), output->InitializationErrorString().c_str());
215 io::FileOutputStream output(outFd);
216 bool success = statsProto.SerializeToZeroCopyStream(&output) && output.Flush();
217 if (output.GetErrno() != 0) {
219 outFd, path.c_str(), output.GetErrno(), strerror(output.GetErrno()));
/frameworks/base/libs/hwui/utils/
H A DBlur.cpp102 uint8_t* output = dest + y * width; local
132 *output = (uint8_t)blurredPixel;
133 output ++;
144 uint8_t* output = dest + y * width; local
176 *output = (uint8_t) blurredPixel;
177 output++;
/frameworks/base/media/java/android/media/
H A DExifInterface.java1974 public boolean getLatLong(float output[]) { argument
1982 output[0] = convertRationalLatLonToFloat(latValue, latRef);
1983 output[1] = convertRationalLatLonToFloat(lngValue, lngRef);
2553 // Stores a new JPEG image with EXIF attributes into a given output stream.
3229 // Writes an Exif segment into the given output stream.
3720 // An output stream to write EXIF data area, which can be written in either little or big endian
/frameworks/base/media/jni/
H A Dandroid_media_MediaDrm.cpp1315 Vector<uint8_t> output; local
1317 status_t err = drm->encrypt(sessionId, keyId, input, iv, output);
1323 return VectorToJByteArray(env, output);
1346 Vector<uint8_t> output; local
1348 status_t err = drm->decrypt(sessionId, keyId, input, iv, output);
1353 return VectorToJByteArray(env, output);
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DNativeProgram.java98 public void process(Frame[] inputs, Frame output) { argument
111 // Get the native output frame
113 if (output == null || output instanceof NativeFrame) {
114 nativeOutput = (NativeFrame)output;
116 throw new RuntimeException("NativeProgram got non-native output frame!");
173 private native boolean callNativeProcess(NativeFrame[] inputs, NativeFrame output); argument
H A DProgram.java27 public abstract void process(Frame[] inputs, Frame output); argument
29 public void process(Frame input, Frame output) { argument
32 process(inputs, output);
H A DShaderProgram.java88 public void process(Frame[] inputs, Frame output) { argument
106 // Get the GL output frame
108 if (output instanceof GLFrame) {
109 glOutput = (GLFrame)output;
111 throw new RuntimeException("ShaderProgram got non-GL output frame!");
116 int xTiles = (output.getFormat().getWidth() + mMaxTileSize - 1) / mMaxTileSize;
117 int yTiles = (output.getFormat().getHeight() + mMaxTileSize - 1) / mMaxTileSize;
194 throw new RuntimeException("Could not set clears-output flag to " + clears + "!");
259 private native boolean shaderProcess(GLFrame[] inputs, GLFrame output); argument

Completed in 5901 milliseconds

12345678