Lines Matching defs:csv_private_s
115 typedef struct csv_private_s { struct
116 uint32_t c_flags; /* Flags for this encoder */
119 char *c_path_buf; /* Buffer containing path members */
120 path_frame_t *c_path; /* Array of path members */
121 ssize_t c_path_max; /* Depth of c_path[] */
122 ssize_t c_path_cur; /* Current depth in c_path[] */
126 xo_buffer_t c_stack_buf; /* Buffer used for stack content */
127 stack_frame_t *c_stack; /* Stack of open tags */
128 ssize_t c_stack_max; /* Maximum stack depth */
130 ssize_t c_stack_depth; /* Current stack depth */
133 xo_buffer_t c_name_buf; /* String buffer for leaf names */
134 xo_buffer_t c_value_buf; /* String buffer for leaf values */
135 leaf_t *c_leaf; /* List of leafs */
136 ssize_t c_leaf_depth; /* Current depth of c_leaf[] (next free) */
137 ssize_t c_leaf_max; /* Max depth of c_leaf[] */
139 xo_buffer_t c_data; /* Buffer for creating data */