Searched refs:output (Results 26 - 50 of 189) sorted by last modified time

12345678

/frameworks/compile/libbcc/gdb_plugin/
H A Dandroid-commands.py63 e.output = str(out) + str(err)
159 output = ""
164 output = check_output(largs)
170 return output
383 # the pid when process_name show up in output, or return 0
570 # Set the debug output directory (for JIT debugging)
621 # Set the debug output directory (for JIT debugging)
/frameworks/compile/libbcc/lib/AndroidBitcode/
H A DABCCompilerDriver.cpp97 // FIXME: how can we get the soname if input/output is file descriptor?
177 // Prepare output file.
181 ALOGE("Failed to open the output file! (file descriptor `%d': %s)",
268 // Prepare the output.
271 llvm::raw_ostream *output = local
273 if (output == NULL) {
274 ALOGE("Failed to prepare the output for compile the input from %d into "
283 if (!compile(*script, *output)) {
284 delete output;
290 // Close the output
[all...]
/frameworks/compile/libbcc/lib/Core/
H A DLinker.cpp60 "Cannot open output file",
254 // FIXME: So far, MCLinker must set up output before add input files.
260 if (!mLDInfo->output().hasContext()) {
297 if (mLDInfo->output().hasContext()) {
301 // ----- initialize output file ----- //
317 mLDInfo->output().setType(mcld::Output::DynObj);
319 mLDInfo->output().setType(mcld::Output::Exec);
322 mLDInfo->output().setSOName(mSOName);
323 mLDInfo->output().setMemArea(out_area);
324 mLDInfo->output()
[all...]
/frameworks/compile/libbcc/lib/Support/
H A DDisassembler.cpp189 // Check the state of the specified output file.
194 // Open the output file decorated in llvm::raw_ostream.
195 llvm::raw_ostream *output = pOutput.dup(); local
196 if (output == NULL) {
202 Disassemble(*output, pTriple, pFuncName, pFunc, FuncSize);
204 // Close the output before return.
205 delete output;
/frameworks/compile/libbcc/runtime/
H A DMakefile151 $(Verb) $(LIPO) -create -output $$@ $(Tmp.Inputs))
/frameworks/compile/libbcc/tools/abcc/
H A DMain.cpp61 const char *&input, const char *&output,
77 // output is always in argv[2].
78 output = argv[2];
138 static int ProcessFromFd(const char *input, const char *output, argument
142 if (!GetIntArg(output, output_fd)) {
143 ALOGE("Bad output fd '%s'", output);
159 static int ProcessFromFile(const char *input, const char *output, argument
164 // Open the output file.
165 output_fd = ::open(output, O_RDW
60 ParseArguments(int argc, const char *const *argv, Mode &mode, const char *&input, const char *&output, const char *&triple, const char *&sysroot) argument
195 const char *input, *output, *triple = NULL, *sysroot = NULL; local
[all...]
/frameworks/compile/linkloader/
H A Dmain.cpp103 time_t stub_time(time_t *output) { argument
104 return time(output);
/frameworks/compile/mclinker/include/mcld/MC/
H A DMCLDInfo.h38 * output() - the output file
69 Output& output() function in class:mcld::MCLDInfo
72 const Output& output() const function in class:mcld::MCLDInfo
/frameworks/compile/mclinker/lib/CodeGen/
H A DLLVMTargetMachine.cpp69 cl::desc("Show encoding in .s output"));
74 cl::desc("Show instruction structure in .s output"));
355 // set up output's SOName
357 pLinkerOpt->info().output().name().empty()) {
358 // if the output is a shared object, and the option -soname was not
359 // enable, set soname as the output file name.
360 pLinkerOpt->info().output().setSOName(pOutputFilename);
363 pLinkerOpt->info().output().setPath(sys::fs::RealPath(pOutputFilename));
364 pLinkerOpt->info().output().setType(pOutputLinkType);
H A DSectLinker.cpp93 // 3. - initialize output's standard sections
164 // 13. - write out output
180 // ----- initialize output file ----- //
182 if (Output::Object == pLDInfo.output().type())
187 MemoryArea* out_area = memAreaFactory()->produce(pLDInfo.output().path(),
192 // make sure output is openend successfully.
193 fatal(diag::err_cannot_open_output_file) << pLDInfo.output().name()
194 << pLDInfo.output().path();
197 pLDInfo.output().setMemArea(out_area);
198 pLDInfo.output()
[all...]
/frameworks/compile/mclinker/lib/LD/
H A DDiagnosticInfos.cpp122 switch(m_LDInfo.output().type()) {
/frameworks/compile/mclinker/lib/MC/
H A DMCLDDriver.cpp81 /// we do not separate output file and temporary data structure. So far,
82 /// MCLinker directly use output file's LDContext as the temporary data
88 switch (m_LDInfo.output().type()) {
102 llvm::report_fatal_error(llvm::Twine("output type is not implemented yet. file: `") +
103 m_LDInfo.output().name() +
108 llvm::report_fatal_error(llvm::Twine("unknown output type of file `") +
109 m_LDInfo.output().name() +
166 // check we have input and output files
196 /// mergeSections - put allinput sections into output sections
210 return m_LDBackend.initStandardSymbols(*m_pLinker, m_LDInfo.output());
[all...]
H A DMCLinker.cpp74 ResolveInfo old_info; // used for arrange output symbols
88 // into output symbol table. So, we let the existent false.
119 // if it is a new symbol, create a LDSymbol for the output
123 // set up the relation between output LDSymbol and its ResolveInfo
132 // should override output LDSymbol
138 // we need to arrange its position in the output symbol .
141 // We merge sections when reading them. So we do not need to output symbols
144 // No matter the symbol is already in the output or not, add it if it
238 /// defineSymbolForcefully - define an output symbol and override it immediately
260 // create a output LDSymbo
[all...]
/frameworks/compile/mclinker/lib/Target/ARM/
H A DARMRelocationFactory.cpp128 pLDInfo.output()))
/frameworks/compile/mclinker/lib/Target/
H A DELFDynamic.cpp91 if (pLDInfo.output().type() == Output::DynObj) {
163 ((pLDInfo.output().type() == Output::DynObj) &&
177 if (pInfo.output().type() == Output::DynObj &&
268 if (pInfo.output().type() == Output::DynObj) {
H A DGNULDBackend.cpp862 // maintain output's symbol and index map if building .o file
971 // maintain output's symbol and index map
1131 // TODO: need to take care other possible output sections
1313 // incremental linking, the output relocatable object may have common
1339 // incremental linking, the output relocatable object may have common
1367 /// createProgramHdrs - base on output sections to create the program headers
1533 /// createGNUStackInfo - create an output GNU stack section or segment if needed
1596 // init EhFrameHdr and size the output section
1614 createProgramHdrs(pLinker.getLDInfo().output(), pInfo);
1636 m_pEhFrameHdr->emitOutput<32>(pLinker.getLDInfo().output(),
[all...]
/frameworks/compile/mclinker/lib/Target/X86/
H A DX86RelocationFactory.cpp94 pFactory.getTarget().isSymbolPreemptible(pSym, pLDInfo, pLDInfo.output()))
254 pLDInfo, pLDInfo.output(), true);
326 pLDInfo.output(), false)) {
/frameworks/compile/mclinker/tools/llvm-mcld/
H A Dllvm-mcld.cpp252 AliasOutputFilename("output",
424 "always surround result strings, even the output is a plain file"),
426 "surround result strings only if the output is a tty"),
552 /// GetOutputStream - get the output stream.
621 llvm::report_fatal_error("Unknown output file type.\n");
626 // Decide if we need "binary" output.
664 pLDInfo.output().setSOName(ArgSOName);
954 // If here, output must be dynamic shared object (mcld::CGFT_DSOFile) and
1089 // Figure out where we are going to send the output...
/frameworks/compile/mclinker/tools/mcld/lib/Core/
H A DLinker.cpp53 "Cannot open output file",
247 // FIXME: So far, MCLinker must set up output before add input files.
253 if (!mLDInfo->output().hasContext()) {
290 if (mLDInfo->output().hasContext()) {
294 // ----- initialize output file ----- //
310 mLDInfo->output().setType(mcld::Output::DynObj);
312 mLDInfo->output().setType(mcld::Output::Exec);
315 mLDInfo->output().setSOName(mSOName);
316 mLDInfo->output().setMemArea(out_area);
317 mLDInfo->output()
[all...]
/frameworks/compile/mclinker/unittests/Linker/
H A DTestLinker.cpp262 if (m_pInfo->output().hasContext())
278 m_pInfo->output().setMemArea(output_memory);
282 m_pInfo->output().setContext(context);
296 if (m_pInfo->output().hasContext())
304 m_pInfo->output().setMemArea(output_memory);
308 m_pInfo->output().setContext(context);
/frameworks/compile/mclinker/unittests/
H A DReadStageTest.cpp95 sstream << "<output name=\"" << pOutput.name() << "\">\n";
105 sstream << "</output>\n";
117 // set up output
118 m_pLinker->config()->output().setType(mcld::Output::DynObj);
143 dumpOutput(m_pLinker->config()->output(), file, 1);
/frameworks/base/tests/backup/src/com/android/backuptest/
H A DBackupTestActivity.java79 PrintStream output = null;
81 output = new PrintStream(openFileOutput(FILE_NAME, MODE_APPEND));
83 output.println(formatter.format(new Date()));
84 output.close();
86 if (output != null) {
87 output.close();
95 PrintStream output = null;
97 output = new PrintStream(openFileOutput(FILE_NAME, MODE_PRIVATE));
98 output.close();
100 if (output !
[all...]
/frameworks/base/tools/obbtool/
H A Dmkobb.sh94 unset output
102 output="${output}${c}"
105 eval $outvar="$output"
106 unset output
/frameworks/base/voip/jni/rtp/
H A DAudioGroup.cpp104 bool mix(int32_t *output, int head, int tail, int sampleRate);
234 bool AudioStream::mix(int32_t *output, int head, int tail, int sampleRate) argument
255 output[i - head] += mBuffer[i & mBufferMask];
788 int output = 0; local
790 if (AudioTrack::getMinFrameCount(&output, AUDIO_STREAM_VOICE_CALL,
791 sampleRate) != NO_ERROR || output <= 0 ||
797 ALOGD("reported frame count: output %d, input %d", output, input);
799 if (output < sampleCount * 2) {
800 output
864 int16_t output[sampleCount]; local
[all...]
/frameworks/base/services/java/com/android/server/
H A DBackupManagerService.java371 FullBackupParams(ParcelFileDescriptor output, boolean saveApks, boolean saveShared, argument
373 fd = output;
2188 // renaming *all* the output state files (see below) until that happens.
2347 BackupDataOutput output = new BackupDataOutput(
2356 output);
2360 writeApkToBackup(mPackage, output);
2735 private void writeApkToBackup(PackageInfo pkg, BackupDataOutput output) { argument
2740 apkDir, appSourceDir, output);
2756 obbDirName, obb.getAbsolutePath(), output);
3365 // send it to the output pip
[all...]

Completed in 1276 milliseconds

12345678