Home
last modified time | relevance | path

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

/freebsd/cddl/contrib/opensolaris/lib/libdtrace/common/
H A Ddt_grammar.y392 DT_TOK_IDENT { $$ = dt_node_ident($1); }
393 | DT_TOK_AGG { $$ = dt_node_ident($1); }
396 | DT_KEY_SELF { $$ = dt_node_ident(DUP("self")); }
397 | DT_KEY_THIS { $$ = dt_node_ident(DUP("this")); }
415 $$ = OP2(DT_TOK_DOT, $1, dt_node_ident($3));
418 $$ = OP2(DT_TOK_DOT, $1, dt_node_ident($3));
421 $$ = OP2(DT_TOK_DOT, $1, dt_node_ident($3));
424 $$ = OP2(DT_TOK_PTR, $1, dt_node_ident($3));
427 $$ = OP2(DT_TOK_PTR, $1, dt_node_ident($3));
430 $$ = 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.h209 extern dt_node_t *dt_node_ident(char *);
H A Ddt_parser.c1329 dt_node_ident(char *name) in dt_node_ident() function