Searched refs:aexpr (Results 1 - 4 of 4) sorted by relevance

/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/gdb/gdbserver/
H A Dtracepoint.c1197 static char *unparse_agent_expr (struct agent_expr *aexpr);
1201 struct agent_expr *aexpr,
4179 struct agent_expr *aexpr; local
4184 aexpr = xmalloc (sizeof (struct agent_expr));
4185 aexpr->length = xlen;
4186 aexpr->bytes = xmalloc (xlen);
4187 convert_ascii_to_int (act, aexpr->bytes, xlen);
4189 return aexpr;
4197 unparse_agent_expr (struct agent_expr *aexpr) argument
4201 rslt = xmalloc (2 * aexpr
4223 eval_agent_expr(struct tracepoint_hit_ctx *ctx, struct traceframe *tframe, struct agent_expr *aexpr, ULONGEST *rslt) argument
5646 compile_bytecodes(struct agent_expr *aexpr) argument
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/gdb/
H A Dtracepoint.c603 report_agent_reqs_errors (struct agent_expr *aexpr) argument
607 if (aexpr->flaw != agent_flaw_none)
612 if (aexpr->min_height < 0)
622 if (aexpr->max_height > 20)
635 struct agent_expr *aexpr; local
703 aexpr = gen_trace_for_expr (loc->address, exp);
704 make_cleanup_free_agent_expr (aexpr);
706 if (aexpr->len > MAX_AGENT_EXPR_LEN)
709 ax_reqs (aexpr);
711 report_agent_reqs_errors (aexpr);
1018 struct agent_expr *aexpr; local
1298 struct agent_expr *aexpr; local
1543 add_aexpr(struct collection_list *collect, struct agent_expr *aexpr) argument
[all...]
H A Dremote.c9747 struct agent_expr *aexpr;
9823 aexpr = gen_eval_for_expr (tpaddr, loc->cond);
9824 aexpr_chain = make_cleanup_free_agent_expr (aexpr);
9825 sprintf (buf + strlen (buf), ":X%x,", aexpr->len);
9827 for (ndx = 0; ndx < aexpr->len; ++ndx)
9828 pkt = pack_hex_byte (pkt, aexpr->buf[ndx]);
9730 struct agent_expr *aexpr; local
/netbsd-6-1-5-RELEASE/bin/test/
H A Dtest.c33 oexpr ::= aexpr | aexpr "-o" oexpr ;
34 aexpr ::= nexpr | nexpr "-a" aexpr ;
161 static int aexpr(enum token);
258 res = aexpr(n);
268 aexpr(enum token n) function
276 return aexpr(t_lex(*++t_wp)) && res;

Completed in 208 milliseconds