Lines Matching defs:ops
9 #include "src/gpu/ops/GrOp.h"
30 Ops* ops = nullptr;
32 ops = new Ops;
33 fClientIDLookup.set(fClientID, ops);
35 ops = *opsLookup;
38 ops->push_back(auditOp);
45 // We use the op pointer as a key to find the OpNode we are 'glomming' ops onto
68 // steal all of consumed's ops
105 // back a new op info struct. We happen to know that ops are in sequential order in the
111 // Because we will copy out all of the ops associated with a given op list id everytime
116 // copy out all of the ops so the client can display them even if they have a
132 // free all client ops
133 fClientIDLookup.foreach ([](const int&, Ops** ops) { delete *ops; });
163 Ops** ops = fClientIDLookup.find(clientID);
164 if (ops) {
165 JsonifyTArray(writer, "Ops", **ops);