Searched refs:SERVER_SIDE (Results 1 – 3 of 3) sorted by relevance
/hardware/google/gfxstream/codegen/generic-apigen/ |
D | main.cpp | 138 … apiEntries.genProcTypes(decoderDir + "/" + baseName + "_server_proc.h", ApiGen::SERVER_SIDE); in main() 139 … apiEntries.genContext(decoderDir + "/" + baseName + "_server_context.h", ApiGen::SERVER_SIDE); in main() 140 …piEntries.genContextImpl(decoderDir + "/" + baseName + "_server_context.cpp", ApiGen::SERVER_SIDE); in main()
|
D | ApiGen.h | 28 typedef enum { CLIENT_SIDE, SERVER_SIDE, WRAPPER_SIDE } SideType; enumerator 51 case SERVER_SIDE: in sideString()
|
D | ApiGen.cpp | 99 if (e->customDecoder() && side == SERVER_SIDE) { fprintf(fp, "void *ctx"); } in genProcTypes() 106 …if (j != 0 || side == CLIENT_SIDE || (side == SERVER_SIDE && e->customDecoder())) fprintf(fp, ", "… in genProcTypes() 112 if (side == SERVER_SIDE && e->customDecoder() && !e->notApi()) { in genProcTypes() 193 if (side == SERVER_SIDE && e->customDecoder() && !e->notApi()) { in genContext() 928 fprintf(fp, "#include \"%s_%s_context.h\"\n\n\n", m_basename.c_str(), sideString(SERVER_SIDE)); in genDecoderHeader() 941 classname.c_str(), m_basename.c_str(), sideString(SERVER_SIDE)); in genDecoderHeader() 971 if (side == SERVER_SIDE && e->customDecoder() && !e->notApi()) { in genContextImpl()
|