Searched refs:output (Results 251 - 275 of 393) sorted by relevance

<<111213141516

/frameworks/rs/tests/lldb/
H A Drun_tests.py375 raise TestSuiteException('The emulator terminated with output:'
443 output = android.adb('push {0} {1}'.format(state.lldb_server_path_host,
446 if 'failed to copy' in output or 'No such file or directory' in output:
449 .format(output))
451 output = android.shell('chmod a+x {0}'
454 if 'No such file or directory' in output:
/frameworks/base/core/java/com/android/internal/util/
H A DFastPrintWriter.java76 * the target output stream.
91 * the target output stream.
109 * the target output stream.
698 String output = csq.subSequence(start, end).toString();
699 write(output, 0, output.length());
/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/media/mca/filterfw/jni/
H A Djni_shader_program.cpp94 jobject output) {
97 if (program && inputs && output) {
110 // Get the output frame
111 GLFrame* output_frame = ConvertFromJava<GLFrame>(env, output);
113 ALOGE("ShaderProgram: no output frame found!");
91 Java_android_filterfw_core_ShaderProgram_shaderProcess(JNIEnv* env, jobject thiz, jobjectArray inputs, jobject output) argument
/frameworks/base/location/java/com/android/internal/location/
H A DGpsNetInitiatedHandler.java437 byte[] output = new byte[length];
444 output[i] = (byte) Integer.parseInt(original.substring(i*2, i*2+2), 16);
450 output[i] = (byte) original.charAt(i);
454 return output;
/frameworks/base/services/core/java/com/android/server/
H A DDropBoxManagerService.java221 OutputStream output = null;
253 output = new BufferedOutputStream(foutput, bufferSize);
255 output = new GZIPOutputStream(output);
260 output.write(buffer, 0, read);
271 output.close(); // Get a final size measurement
272 output = null;
274 output.flush(); // So the size measurement is pseudo-reasonable
303 IoUtils.closeQuietly(output);
/frameworks/compile/libbcc/tools/bcc/
H A DMain.cpp71 OptOutputFilename("o", llvm::cl::desc("Specify the output filename"),
86 OptOutputPath("output_path", llvm::cl::desc("Specify the output path"),
87 llvm::cl::value_desc("output path"),
357 llvm::SmallString<80> output(OptOutputPath);
358 llvm::sys::path::append(output, "/", OptOutputFilename);
359 llvm::sys::path::replace_extension(output, ".o");
361 if (!RSCD.buildForCompatLib(*s, output.c_str(), OptChecksum.c_str(),
/frameworks/native/libs/gui/
H A DSurface.cpp661 IGraphicBufferProducer::QueueBufferOutput output; local
730 status_t err = mGraphicBufferProducer->queueBuffer(i, input, &output);
737 mFrameEventHistory->applyDelta(output.frameTimestamps);
751 mDefaultWidth = output.width;
752 mDefaultHeight = output.height;
753 mNextFrameNumber = output.nextFrameNumber;
757 mTransformHint = output.transformHint;
760 mConsumerRunningBehind = (output.numPendingBuffers >= 2);
1152 IGraphicBufferProducer::QueueBufferOutput output; local
1154 int err = mGraphicBufferProducer->connect(listener, api, mProducerControlledByApp, &output);
[all...]
/frameworks/av/drm/mediadrm/plugins/mock/
H A DMockDrmCryptoPlugin.h114 Vector<uint8_t> &output);
120 Vector<uint8_t> &output);
/frameworks/av/include/media/
H A DDrm.h103 Vector<uint8_t> &output);
109 Vector<uint8_t> &output);
H A DDrmHal.h113 Vector<uint8_t> &output);
119 Vector<uint8_t> &output);
H A DIDrm.h99 Vector<uint8_t> &output) = 0;
105 Vector<uint8_t> &output) = 0;
/frameworks/av/media/libmedia/include/media/
H A DDrm.h103 Vector<uint8_t> &output);
109 Vector<uint8_t> &output);
H A DDrmHal.h113 Vector<uint8_t> &output);
119 Vector<uint8_t> &output);
H A DIDrm.h99 Vector<uint8_t> &output) = 0;
105 Vector<uint8_t> &output) = 0;
/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/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/media/mca/filterfw/native/core/
H A Dshader_program.h72 // rectangular region of the output texture. You can modify the input and
73 // output regions by using the SetSourceRegion(...) and SetTargetRegion(...)
95 // Process the given input frames and write the result to the output frame.
97 bool Process(const std::vector<const GLFrame*>& inputs, GLFrame* output);
103 GLFrameBufferHandle* output);
120 // input to the output. Note that transformations may be applied to achieve
145 // Set the program to write to a subregion of the output frame, given by
147 // normalized between 0.0 and 1.0. If this region exceeds the output frame
151 // Set the program to write to a subregion of the output frame, given by
155 // If this region exceeds the output fram
[all...]
/frameworks/base/services/
H A DAndroid.mk18 # Uncomment to enable output of certain warnings (deprecated, unchecked)
/frameworks/base/services/core/jni/
H A Dcom_android_server_am_BatteryStatsService.cpp186 char *output = (char*)env->GetDirectBufferAddress(outBuf); local
187 char *offset = output;
/frameworks/base/tools/bit/
H A Daapt.cpp170 string output = get_command_output(cmd, &err, false); local
178 split_lines(&lines, output);
/frameworks/native/include/gui/
H A DIGraphicBufferProducer.h285 // Upon success, the output will be filled with meaningful values
397 QueueBufferOutput* output) = 0;
447 // Upon success, the output will be filled with meaningful data
457 // * output was NULL.
466 int api, bool producerControlledByApp, QueueBufferOutput* output) = 0;
/frameworks/native/include/media/drm/
H A DDrmAPI.h300 Vector<uint8_t> &output) = 0;
309 Vector<uint8_t> &output) = 0;
/frameworks/base/core/java/android/text/
H A DTextUtils.java850 * Debugging tool to print the spans in a CharSequence. The output will
906 * the output. Only up to 9 replacement values are supported,
1277 final SpannableStringBuilder output = new SpannableStringBuilder();
1280 output.append(bidiFormatter.unicodeWrap(elements.get(i)));
1282 output.append(separator);
1284 endIndexes[i] = output.length();
1289 output.delete(endIndexes[i], output.length());
1297 output.append(morePiece);
1300 final float width = paint.measureText(output,
[all...]
/frameworks/native/opengl/libagl/
H A Dprimitives.cpp870 // output lists (we need 2, which we use back and forth)
879 // 3 input vertices, 0 in the output list, first plane
894 // pointers to our output list (head and current)
896 vertex_t** output = ovl; local
910 *output++ = p;
916 *output++ = buf++;
927 *output++ = buf++;
932 *output++ = p;
941 // output list become the new input list
960 // pointers to our output lis
962 vertex_t** output = ovl; local
[all...]

Completed in 1267 milliseconds

<<111213141516