Searched refs:Input (Results 1 - 25 of 148) sorted by relevance

123456

/frameworks/av/media/img_utils/src/
H A DInput.cpp17 #include <img_utils/Input.h>
22 Input::~Input() {}
24 status_t Input::open() { return OK; }
26 status_t Input::close() { return OK; }
28 ssize_t Input::skip(size_t count) {
/frameworks/compile/mclinker/include/mcld/LD/
H A DBinaryReader.h16 class Input;
27 virtual bool isMyFormat(Input& pInput, bool &pContinue) const
30 virtual bool readBinary(Input& pFile) = 0;
H A DDynObjReader.h16 class Input;
31 virtual bool readHeader(Input& pFile) = 0;
33 virtual bool readSymbols(Input& pFile) = 0;
H A DELFObjectReader.h18 class Input;
46 bool isMyFormat(Input &pFile, bool &pContinue) const;
49 bool readHeader(Input& pFile);
51 virtual bool readSections(Input& pFile);
53 virtual bool readSymbols(Input& pFile);
58 virtual bool readRelocations(Input& pFile);
H A DELFBinaryReader.h17 class Input;
31 bool isMyFormat(Input& pInput, bool &pContinue) const;
33 bool readBinary(Input& pInput);
H A DELFDynObjReader.h15 class Input;
34 bool isMyFormat(Input &pFile, bool &pContinue) const;
37 bool readHeader(Input& pFile);
39 bool readSymbols(Input& pInput);
H A DBSDArchiveReader.h16 class Input;
31 bool isMyFormat(Input& pInput, bool &pContinue) const;
H A DLDReader.h17 class Input;
37 virtual bool isMyFormat(Input& pInput, bool &pContinue) const = 0;
H A DObjectReader.h19 class Input;
37 virtual bool readHeader(Input& pFile) = 0;
39 virtual bool readSymbols(Input& pFile) = 0;
41 virtual bool readSections(Input& pFile) = 0;
46 virtual bool readRelocations(Input& pFile) = 0;
H A DRelocator.h21 class Input;
66 Input& pInput) = 0;
75 Input& pInput);
79 virtual bool initializeScan(Input& pInput)
84 virtual bool finalizeScan(Input& pInput)
89 virtual bool initializeApply(Input& pInput)
94 virtual bool finalizeApply(Input& pInput)
H A DELFReader.h67 Input::Type fileType(const void* pELFHeader) const;
70 bool readSectionHeaders(Input& pInput, const void* pELFHeader) const;
73 bool readRegularSection(Input& pInput, SectionData& pSD) const;
76 bool readSymbols(Input& pInput,
81 /// readSignature - read a symbol from the given Input and index in symtab
83 ResolveInfo* readSignature(Input& pInput,
88 bool readRela(Input& pInput,
93 bool readRel(Input& pInput,
98 bool readDynamic(Input& pInput) const;
157 Input
[all...]
H A DELFReaderIf.h55 virtual Input::Type fileType(const void* pELFHeader) const = 0;
63 virtual bool readSectionHeaders(Input& pInput,
67 virtual bool readRegularSection(Input& pInput, SectionData& pSD) const = 0;
70 virtual bool readSymbols(Input& pInput,
75 /// readSignature - read a symbol from the given Input and index in symtab
77 virtual ResolveInfo* readSignature(Input& pInput,
82 virtual bool readRela(Input& pInput,
87 virtual bool readRel(Input& pInput,
92 virtual bool readDynamic(Input& pInput) const = 0;
107 ResolveInfo::Desc getSymDesc(uint16_t pShndx, const Input
[all...]
H A DGNUArchiveReader.h18 class Input;
38 bool isMyFormat(Input& input, bool &pContinue) const;
48 bool isThinArchive(Input& input) const;
59 Input* readMemberHeader(Archive& pArchiveRoot,
60 Input& pArchiveFile,
H A DTextDiagnosticPrinter.h34 virtual void beginInput(const Input& pInput, const LinkerConfig& pConfig);
41 const Input* m_pInput;
/frameworks/compile/mclinker/lib/MC/
H A DFileAction.cpp10 #include <mcld/MC/Input.h>
24 Input* input = *pBuilder.getCurrentNode();
30 if (input->type() == Input::Script ||
31 input->type() == Input::Object ||
32 input->type() == Input::DynObj ||
33 input->type() == Input::Archive)
50 Input* input = *pBuilder.getCurrentNode();
56 if (input->type() == Input::Script ||
57 input->type() == Input::Object ||
58 input->type() == Input
[all...]
H A DInput.cpp1 //===- Input.cpp ----------------------------------------------------------===//
9 #include <mcld/MC/Input.h>
16 // mcld::Input
18 Input::Input(llvm::StringRef pName) function in class:Input
30 Input::Input(llvm::StringRef pName, const AttributeProxy& pProxy) function in class:Input
42 Input::Input(llvm::StringRef pName, function in class:Input
57 Input function in class:Input
[all...]
H A DInputFactory.cpp20 : GCFactory<Input,0>(pNum) {
34 Input* InputFactory::produce(llvm::StringRef pName,
39 Input* result = Alloc::allocate();
40 new (result) Input(pName, pPath, *m_pLast, pType, pFileOffset);
H A DSearchDirs.cpp77 SearchDirs::find(const std::string& pNamespec, mcld::Input::Type pType)
79 assert(Input::DynObj == pType ||
80 Input::Archive == pType ||
81 Input::Script == pType);
85 case Input::Script:
88 case Input::DynObj:
89 case Input::Archive :
104 case Input::Script: {
112 case Input::DynObj: {
124 case Input
[all...]
/frameworks/compile/mclinker/lib/LD/
H A DBSDArchiveReader.cpp9 #include <mcld/MC/Input.h>
30 bool BSDArchiveReader::isMyFormat(Input& pInput, bool &pContinue) const
/frameworks/compile/mclinker/include/mcld/MC/
H A DInputFactory.h12 #include <mcld/MC/Input.h>
29 class InputFactory : public GCFactory<Input,0>
32 typedef GCFactory<Input, 0> Alloc;
40 Input* produce(llvm::StringRef pName,
42 unsigned int pType = Input::Unknown,
H A DInputBuilder.h16 #include <mcld/MC/Input.h>
58 unsigned int pType = Input::Unknown);
61 Input* createInput(const std::string& pName,
63 unsigned int pType = Input::Unknown,
66 bool setContext(Input& pInput, bool pCheck = true);
68 bool setMemory(Input& pInput,
72 bool setMemory(Input& pInput, void* pMemBuffer, size_t pSize);
111 Input* input = createInput(pName, pPath, pType);
126 Input* input = createInput(pName, pPath, pType);
/frameworks/compile/mclinker/include/mcld/
H A DInputTree.h14 #include <mcld/MC/Input.h>
22 /** \class template<typename Traits, typename Iterator> PolicyIterator<mcld::Input>
23 * \brief PolicyIterator<mcld::Input> is a partially specific PolicyIterator
26 class PolicyIterator<mcld::Input, Traits, IteratorType> : public PolicyIteratorBase<Input, Traits, IteratorType>
29 typedef PolicyIterator<Input, Traits, IteratorType> Self;
30 typedef PolicyIteratorBase<Input, Traits, IteratorType> Base;
31 typedef PolicyIterator<Input, typename Traits::nonconst_traits, IteratorType> iterator;
32 typedef PolicyIterator<Input, typename Traits::const_traits, IteratorType> const_iterator;
68 class BinaryTree<Input>
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DInput.java27 public class Input implements Parcelable { class in inherits:Parcelable
41 Input() { method in class:Input
56 private Input(Parcel in) { method in class:Input
92 public static final Parcelable.Creator<Input> CREATOR = new Parcelable.Creator<Input>() {
94 public Input createFromParcel(Parcel in) {
95 return new Input(in);
99 public Input[] newArray(int size) {
100 return new Input[size];
/frameworks/av/media/img_utils/include/img_utils/
H A DInput.h30 class ANDROID_API Input { class in namespace:android::img_utils
32 virtual ~Input();
35 * Open this Input.
60 * Close the Input. It is not valid to call open on a previously closed Input.
H A DFileInput.h20 #include <img_utils/Input.h>
34 class ANDROID_API FileInput : public Input {

Completed in 2552 milliseconds

123456