• Home
  • Raw
  • Download

Lines Matching refs:opt

127 	struct parse_opt *opt = calloc (1, sizeof (*opt));  in parse_opt()  local
128 if (opt == NULL) in parse_opt()
130 state->hook = opt; in parse_opt()
140 struct parse_opt *opt = state->hook; in parse_opt() local
141 Dwfl *dwfl = opt->dwfl; in parse_opt()
147 opt->dwfl = dwfl; in parse_opt()
160 opt->e = arg; in parse_opt()
166 struct parse_opt *opt = state->hook; in parse_opt() local
167 if (opt->dwfl == NULL) in parse_opt()
177 opt->dwfl = dwfl; in parse_opt()
186 struct parse_opt *opt = state->hook; in parse_opt() local
187 if (opt->dwfl == NULL) in parse_opt()
202 opt->dwfl = dwfl; in parse_opt()
211 struct parse_opt *opt = state->hook; in parse_opt() local
212 Dwfl *dwfl = opt->dwfl; in parse_opt()
214 opt->dwfl = dwfl = INTUSE(dwfl_begin) (&offline_callbacks); in parse_opt()
218 opt->core = arg; in parse_opt()
224 struct parse_opt *opt = state->hook; in parse_opt() local
225 if (opt->dwfl == NULL) in parse_opt()
235 opt->dwfl = dwfl; in parse_opt()
244 struct parse_opt *opt = state->hook; in parse_opt() local
245 if (opt->dwfl == NULL) in parse_opt()
252 opt->dwfl = dwfl; in parse_opt()
261 struct parse_opt *opt = state->hook; in parse_opt() local
262 Dwfl *dwfl = opt->dwfl; in parse_opt()
271 opt->dwfl = dwfl; in parse_opt()
274 if (opt->core) in parse_opt()
276 int fd = open (opt->core, O_RDONLY); in parse_opt()
281 "cannot open '%s'", opt->core); in parse_opt()
295 int result = INTUSE(dwfl_core_file_report) (dwfl, core, opt->e); in parse_opt()
300 return fail (dwfl, result, opt->core); in parse_opt()
327 else if (opt->e) in parse_opt()
329 if (INTUSE(dwfl_report_offline) (dwfl, "", opt->e, -1) == NULL) in parse_opt()
330 return fail (dwfl, -1, opt->e); in parse_opt()
343 free (opt); in parse_opt()
350 struct parse_opt *opt = state->hook; in parse_opt() local
351 dwfl_end (opt->dwfl); in parse_opt()
352 free (opt); in parse_opt()
362 struct parse_opt *opt = state->hook; in parse_opt() local
363 if (opt) in parse_opt()
364 *(Dwfl **) state->input = opt->dwfl; in parse_opt()