Searched refs:output (Results 151 - 175 of 189) sorted by path

12345678

/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/ex/carousel/
H A DAndroid.mk29 # Include this library in the build server's output directory
/frameworks/ex/common/
H A DAndroid.mk28 # Include this library in the build server's output directory
/frameworks/ex/common/tools/
H A Dmake-iana-tld-pattern.py42 output = ' ';
46 output += '+ "'
48 output += '"('
50 output += '+ "|'
53 output += '('
56 output += '?:'
61 output += '|'
65 output += '\\\\' # escape the '-' character.
66 output += letter
69 output
[all...]
/frameworks/native/include/gui/
H A DBufferQueue.h140 const QueueBufferInput& input, QueueBufferOutput* output);
157 virtual status_t connect(int api, QueueBufferOutput* output);
H A DISurfaceTexture.h149 const QueueBufferInput& input, QueueBufferOutput* output) = 0;
177 virtual status_t connect(int api, QueueBufferOutput* output) = 0;
/frameworks/native/include/private/gui/
H A DLayerState.h64 status_t write(Parcel& output) const;
94 status_t write(Parcel& output) const;
122 status_t write(Parcel& output) const;
/frameworks/native/libs/gui/
H A DBufferQueue.cpp481 const QueueBufferInput& input, QueueBufferOutput* output) {
580 output->inflate(mDefaultWidth, mDefaultHeight, mTransformHint,
619 status_t BufferQueue::connect(int api, QueueBufferOutput* output) { argument
646 output->inflate(mDefaultWidth, mDefaultHeight, mTransformHint,
480 queueBuffer(int buf, const QueueBufferInput& input, QueueBufferOutput* output) argument
H A DISurfaceTexture.cpp108 const QueueBufferInput& input, QueueBufferOutput* output) {
117 memcpy(output, reply.readInplace(sizeof(*output)), sizeof(*output));
159 virtual status_t connect(int api, QueueBufferOutput* output) { argument
167 memcpy(output, reply.readInplace(sizeof(*output)), sizeof(*output));
234 QueueBufferOutput* const output = local
237 status_t result = queueBuffer(buf, input, output);
107 queueBuffer(int buf, const QueueBufferInput& input, QueueBufferOutput* output) argument
272 QueueBufferOutput* const output = local
[all...]
H A DLayerState.cpp25 status_t layer_state_t::write(Parcel& output) const
29 err = output.write(transparentRegion);
35 err = output.write(this, size);
53 status_t ComposerState::write(Parcel& output) const {
54 output.writeStrongBinder(client->asBinder());
55 return state.write(output);
64 status_t DisplayState::write(Parcel& output) const {
65 output.writeStrongBinder(token);
66 output.writeStrongBinder(surface->asBinder());
67 output
[all...]
H A DSurfaceTextureClient.cpp299 ISurfaceTexture::QueueBufferOutput output; local
302 status_t err = mSurfaceTexture->queueBuffer(i, input, &output);
307 output.deflate(&mDefaultWidth, &mDefaultHeight, &mTransformHint,
508 ISurfaceTexture::QueueBufferOutput output; local
509 int err = mSurfaceTexture->connect(api, &output);
512 output.deflate(&mDefaultWidth, &mDefaultHeight, &mTransformHint,
/frameworks/native/libs/utils/tests/
H A DUnicode_test.cpp41 << "Zero length input should return zero length output.";
97 char16_t output[1 + 1 + 1 + 2 + 1]; // Room for NULL local
99 utf8_to_utf16(str, sizeof(str), output);
101 EXPECT_EQ(0x0030, output[0])
103 EXPECT_EQ(0x0100, output[1])
105 EXPECT_EQ(0x2323, output[2])
107 EXPECT_EQ(0xD800, output[3])
109 EXPECT_EQ(0xDC00, output[4])
111 EXPECT_EQ(NULL, output[5])

Completed in 221 milliseconds

12345678