Home
last modified time | relevance | path

Searched refs:mCommands (Results 1 – 6 of 6) sorted by relevance

/external/angle/src/libANGLE/renderer/metal/
Dmtl_command_buffer.mm1364 mCommands.clear();
1517 mCommands.clear();
1523 mCommands.clear();
1643 while (mCommands.good())
1645 CmdType cmdType = mCommands.fetch<CmdType>();
1650 CMD##Cmd(metalCmdEncoder, &mCommands); \
1657 mCommands.clear();
1722 mCommands.push(CmdType::SetRenderPipelineState).push([state ANGLE_MTL_RETAIN]);
1734 mCommands.push(CmdType::SetTriangleFillMode).push(mode);
1746 mCommands.push(CmdType::SetFrontFacingWinding).push(winding);
[all …]
Dmtl_command_buffer.h634 IntermediateCommandStream mCommands; variable
/external/angle/src/libANGLE/renderer/vulkan/
DSecondaryCommandBuffer.cpp208 for (const CommandHeader *command : mCommands) in executeCommands()
914 *allocatedMemoryOut = blockSize * mCommands.size(); in getMemoryUsageStatsForPoolAlloc()
917 for (const CommandHeader *command : mCommands) in getMemoryUsageStatsForPoolAlloc()
935 for (const CommandHeader *command : mCommands) in dumpCommands()
DSecondaryCommandBuffer.h1152 mCommands.clear(); in reset()
1162 return mCommands.size() == 0 || mCommands[0]->id == CommandID::Invalid; in checkEmptyForPoolAlloc()
1170 void clearCommands() { mCommands.clear(); } in clearCommands()
1171 bool hasEmptyCommands() { return mCommands.empty(); } in hasEmptyCommands()
1174 mCommands.push_back(reinterpret_cast<priv::CommandHeader *>(command)); in pushToCommands()
1269 std::vector<CommandHeader *> mCommands; variable
/external/openthread/src/cli/
Dcli.hpp331 const otCliCommand *mCommands; member
Dcli.cpp377 if (aArgs[0] == entry.mCommands[i].mName) in ProcessUserCommands()
382 … error = entry.mCommands[i].mCommand(entry.mContext, Arg::GetArgsLength(aArgs) - 1, args + 1); in ProcessUserCommands()
397 if (entry.mCommands == nullptr) in SetUserCommands()
399 entry.mCommands = aCommands; in SetUserCommands()
8428 OutputLine("%s", entry.mCommands[i].mName); in ProcessCommand()