Lines Matching refs:e
43 int e; in ctx_prep() local
51 e= xlu__cfg_yylex_init_extra(ctx, &ctx->scanner); in ctx_prep()
52 if (e) { in ctx_prep()
54 cfg->config_source, strerror(e)); in ctx_prep()
55 return e; in ctx_prep()
84 int e; in xlu_cfg_readfile() local
87 e = ctx_prep(&ctx, cfg); in xlu_cfg_readfile()
88 if (e) { ctx.err= e; goto xe; } in xlu_cfg_readfile()
94 real_filename, strerror(e)); in xlu_cfg_readfile()
110 int e; in xlu_cfg_readdata() local
114 e= ctx_prep(&ctx, cfg); in xlu_cfg_readdata()
115 if (e) { ctx.err= e; goto xe; } in xlu_cfg_readdata()
253 int e; in xlu_cfg_get_string() local
255 e= find_atom(cfg,n,&set,dont_warn); if (e) return e; in xlu_cfg_get_string()
263 int e; in xlu_cfg_replace_string() local
265 e= find_atom(cfg,n,&set,dont_warn); if (e) return e; in xlu_cfg_replace_string()
276 int e; in xlu_cfg_get_bounded_long() local
279 e= find_atom(cfg,n,&set,dont_warn); if (e) return e; in xlu_cfg_get_bounded_long()
289 e= errno; in xlu_cfg_get_bounded_long()
291 e= errno; in xlu_cfg_get_bounded_long()
292 assert(e==EINVAL || e==ERANGE); in xlu_cfg_get_bounded_long()
297 cfg->config_source, set->lineno, n, strerror(e)); in xlu_cfg_get_bounded_long()
298 return e; in xlu_cfg_get_bounded_long()