Home
last modified time | relevance | path

Searched refs:state_add (Results 1 – 3 of 3) sorted by relevance

/external/bcc/src/cc/frontends/b/
Dparser.h45 StmtNode * state_add(Scopes::StateScope *scope, IdentExprNode *id1, BlockStmtNode *body);
46 …StmtNode * state_add(Scopes::StateScope *scope, IdentExprNode *id1, IdentExprNode *id2, BlockStmtN…
Dparser.cc87 StmtNode *Parser::state_add(Scopes::StateScope *scope, IdentExprNode *id, BlockStmtNode *body) { in state_add() function in ebpf::cc::Parser
104 StmtNode *Parser::state_add(Scopes::StateScope *scope, IdentExprNode *id1, IdentExprNode *id2, Bloc… in state_add() function in ebpf::cc::Parser
Dparser.yy248 { $$ = parser.state_add($3, $2, $5); $5->scope_ = $4;
252 { $$ = parser.state_add($5, $2, new IdentExprNode(""), $7); $7->scope_ = $6;
256 { $$ = parser.state_add($5, $2, $4, $7); $7->scope_ = $6;