Home | History | Annotate | Download | only in common

Lines Matching refs:o_string

226 	/* was quoted when parsed; copy of struct o_string.nonnull field */
321 } o_string;
324 o_string foo = NULL_O_STRING; */
412 /* o_string manipulation: */
413 static int b_check_space(o_string *o, int len);
414 static int b_addchr(o_string *o, int ch);
415 static void b_reset(o_string *o);
416 static int b_addqchr(o_string *o, int ch, int quote);
418 static int b_adduint(o_string *o, unsigned int i);
454 static int xglob(o_string *dest, int flags, glob_t *pglob);
463 static int done_word(o_string *dest, struct p_context *ctx);
469 static int redirect_opt_num(o_string *o);
470 static int process_command_subs(o_string *dest, struct p_context *ctx, struct in_str *input, int subst_end);
471 static int parse_group(o_string *dest, struct p_context *ctx, struct in_str *input, int ch);
475 static int handle_dollar(o_string *dest, struct p_context *ctx, struct in_str *input);
477 static int parse_string(o_string *dest, struct p_context *ctx, const char *src);
479 static int parse_stream(o_string *dest, struct p_context *ctx, struct in_str *input0, int end_trigger);
867 static int b_check_space(o_string *o, int len)
883 static int b_addchr(o_string *o, int ch)
893 static void b_reset(o_string *o)
900 static void b_free(o_string *o)
911 static int b_addqchr(o_string *o, int ch, int quote)
922 static int b_adduint(o_string *o, unsigned int i)
2096 static int xglob(o_string *dest, int flags, glob_t *pglob)
2401 static int reserved_word(o_string *dest, struct p_context *ctx)
2450 static int done_word(o_string *dest, struct p_context *ctx)
2645 static int redirect_opt_num(o_string *o)
2698 static int process_command_subs(o_string *dest, struct p_context *ctx, struct in_str *input, int subst_end)
2701 o_string result=NULL_O_STRING;
2741 static int parse_group(o_string *dest, struct p_context *ctx,
2837 static int handle_dollar(o_string *dest, struct p_context *ctx, struct in_str *input)
2941 int parse_string(o_string *dest, struct p_context *ctx, const char *src)
2950 static int parse_stream(o_string *dest, struct p_context *ctx,
3188 o_string temp=NULL_O_STRING;