Searched refs:CLIENT_SIDE (Results 1 – 3 of 3) sorted by relevance
/hardware/google/gfxstream/codegen/generic-apigen/ |
D | main.cpp | 125 … apiEntries.genContext(encoderDir + "/" + baseName + "_client_context.h", ApiGen::CLIENT_SIDE); in main() 126 …piEntries.genContextImpl(encoderDir + "/" + baseName + "_client_context.cpp", ApiGen::CLIENT_SIDE); in main() 128 … apiEntries.genProcTypes(encoderDir + "/" + baseName + "_client_proc.h", ApiGen::CLIENT_SIDE); in main() 129 apiEntries.genFuncTable(encoderDir + "/" + baseName + "_ftable.h", ApiGen::CLIENT_SIDE); in main() 131 apiEntries.genEntryPoints(encoderDir + "/" + baseName + "_entry.cpp", ApiGen::CLIENT_SIDE); in main()
|
D | ApiGen.h | 28 typedef enum { CLIENT_SIDE, SERVER_SIDE, WRAPPER_SIDE } SideType; enumerator 48 case CLIENT_SIDE: in sideString()
|
D | ApiGen.cpp | 98 if (side == CLIENT_SIDE) { fprintf(fp, "void * ctx"); } in genProcTypes() 106 …if (j != 0 || side == CLIENT_SIDE || (side == SERVER_SIDE && e->customDecoder())) fprintf(fp, ", "… in genProcTypes() 178 side == CLIENT_SIDE ? "client" : "server"); in genContext() 181 …StringVec & contextHeaders = side == CLIENT_SIDE ? m_clientContextHeaders : m_serverContextHeaders; in genContext() 204 if (side == CLIENT_SIDE || side == WRAPPER_SIDE) { in genContext() 214 if (side == CLIENT_SIDE) { in genContext() 229 if (side != CLIENT_SIDE && side != WRAPPER_SIDE) { in genEntryPoints() 273 bool shouldCallWithContext = (side == CLIENT_SIDE); in genEntryPoints() 358 fprintf(fp, "#include \"%s_%s_context.h\"\n\n\n", m_basename.c_str(), sideString(CLIENT_SIDE)); in genEncoderHeader() 368 classname.c_str(), m_basename.c_str(), sideString(CLIENT_SIDE)); in genEncoderHeader() [all …]
|