Home
last modified time | relevance | path

Searched refs:dt_node_ident (Results 1 – 4 of 4) sorted by relevance

/titanic_44/usr/src/lib/libdtrace/common/
H A Ddt_sugar.c80 return (dt_node_op2(DT_TOK_PTR, dt_node_ident(strdup("self")), in dt_sugar_new_error_var()
81 dt_node_ident(strdup("%error")))); in dt_sugar_new_error_var()
118 return (dt_node_op2(DT_TOK_PTR, dt_node_ident(strdup("this")), in dt_sugar_new_condition_var()
119 dt_node_ident(str))); in dt_sugar_new_condition_var()
H A Ddt_grammar.y390 DT_TOK_IDENT { $$ = dt_node_ident($1); }
391 | DT_TOK_AGG { $$ = dt_node_ident($1); }
394 | DT_KEY_SELF { $$ = dt_node_ident(DUP("self")); }
395 | DT_KEY_THIS { $$ = dt_node_ident(DUP("this")); }
413 $$ = OP2(DT_TOK_DOT, $1, dt_node_ident($3));
416 $$ = OP2(DT_TOK_DOT, $1, dt_node_ident($3));
419 $$ = OP2(DT_TOK_PTR, $1, dt_node_ident($3));
422 $$ = OP2(DT_TOK_PTR, $1, dt_node_ident($3));
H A Ddt_parser.h209 extern dt_node_t *dt_node_ident(char *);
H A Ddt_parser.c1301 dt_node_ident(char *name) in dt_node_ident() function