Home | History | Annotate | Download | only in MC

Lines Matching full:pinput

102 bool InputBuilder::setContext(Input& pInput, bool pCheck) {
107 if (pInput.fileOffset() != 0 || !pCheck) {
108 // pInput is an object in an archive file. Produce a new context in this
112 // Using pInput.path() to avoid from creating context for identical file
114 context = m_pContextFactory->produce(pInput.path());
117 pInput.setContext(context);
121 bool InputBuilder::setMemory(Input& pInput,
124 MemoryArea* memory = m_pMemFactory->produce(pInput.path(), pMode, pPerm);
125 pInput.setMemArea(memory);
129 bool InputBuilder::setMemory(Input& pInput, void* pMemBuffer, size_t pSize) {
131 pInput.setMemArea(memory);