Searched defs:pOutBuffer (Results 1 - 2 of 2) sorted by relevance

/packages/services/BuiltInPrintService/jni/plugins/
H A Dpclm_wrapper_api.cpp26 int PCLmStartJob(void *thisClass, void **pOutBuffer, int *iOutBufferSize) { argument
27 return static_cast<PCLmGenerator *>(thisClass)->StartJob(pOutBuffer, iOutBufferSize);
30 int PCLmEndJob(void *thisClass, void **pOutBuffer, int *iOutBufferSize) { argument
31 return static_cast<PCLmGenerator *>(thisClass)->EndJob(pOutBuffer, iOutBufferSize);
34 int PCLmStartPage(void *thisClass, PCLmPageSetup *PCLmPageContent, void **pOutBuffer, argument
36 return static_cast<PCLmGenerator *>(thisClass)->StartPage(PCLmPageContent, pOutBuffer,
40 int PCLmEndPage(void *thisClass, void **pOutBuffer, int *iOutBufferSize) { argument
41 return static_cast<PCLmGenerator *>(thisClass)->EndPage(pOutBuffer, iOutBufferSize);
45 void **pOutBuffer, int *iOutBufferSize) {
47 pOutBuffer, iOutBufferSiz
44 PCLmEncapsulate(void *thisClass, void *pInBuffer, int inBufferSize, int numLines, void **pOutBuffer, int *iOutBufferSize) argument
[all...]
/packages/services/BuiltInPrintService/jni/plugins/genPCLm/src/
H A DgenPCLm.cpp1403 int PCLmGenerator::StartJob(void **pOutBuffer, int *iOutBufferSize) { argument
1409 *pOutBuffer = (ubyte *) malloc(outBuffSize); // This multipliy by 10 needs to be removed...
1411 if (NULL == *pOutBuffer) {
1417 if (NULL == *pOutBuffer) {
1421 allocatedOutputBuffer = *pOutBuffer;
1422 initOutBuff((char *) *pOutBuffer, outBuffSize);
1430 int PCLmGenerator::EndJob(void **pOutBuffer, int *iOutBufferSize) { argument
1435 *pOutBuffer = allocatedOutputBuffer;
1437 initOutBuff((char *) *pOutBuffer, outBuffSize);
1458 int PCLmGenerator::StartPage(PCLmPageSetup *PCLmPageContent, void **pOutBuffer, argument
1613 EndPage(void **pOutBuffer, int *iOutBufferSize) argument
1627 Encapsulate(void *pInBuffer, int inBufferSize, int thisHeight, void **pOutBuffer, int *iOutBufferSize) argument
[all...]

Completed in 87 milliseconds