Home
last modified time | relevance | path

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

/illumos-gate/usr/src/lib/libdtrace/common/
H A Ddt_grammar.y391 DT_TOK_IDENT { $$ = dt_node_ident($1); }
392 | DT_TOK_AGG { $$ = dt_node_ident($1); }
395 | DT_KEY_SELF { $$ = dt_node_ident(DUP("self")); }
396 | DT_KEY_THIS { $$ = dt_node_ident(DUP("this")); }
414 $$ = OP2(DT_TOK_DOT, $1, dt_node_ident($3));
417 $$ = OP2(DT_TOK_DOT, $1, dt_node_ident($3));
420 $$ = OP2(DT_TOK_PTR, $1, dt_node_ident($3));
423 $$ = OP2(DT_TOK_PTR, $1, dt_node_ident($3));
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_parser.h211 extern dt_node_t *dt_node_ident(char *);
H A Ddt_parser.c1311 dt_node_ident(char *name) in dt_node_ident() function