Lines Matching refs:item

144   svn_ra_svn_item_t *item;
149 item = &APR_ARRAY_IDX(list, i, svn_ra_svn_item_t);
150 if (item->kind != SVN_RA_SVN_WORD)
153 word = apr_pstrdup(conn->pool, item->u.word);
931 svn_ra_svn_item_t *item, apr_uint64_t len64)
986 /* Return the string properly wrapped into an RA_SVN item. */
987 item->kind = SVN_RA_SVN_STRING;
988 item->u.string = svn_stringbuf__morph_into_string(stringbuf);
993 /* Given the first non-whitespace character FIRST_CHAR, read an item
998 svn_ra_svn_item_t *item, char first_char,
1011 /* Determine the item type and read it in. Make sure that c is the
1012 * first character at the end of the item so we can test to make
1033 SVN_ERR(read_string(conn, pool, item, val));
1039 item->kind = SVN_RA_SVN_NUMBER;
1040 item->u.number = val;
1055 item->kind = SVN_RA_SVN_WORD;
1056 item->u.word = str->data;
1061 item->kind = SVN_RA_SVN_LIST;
1062 item->u.list = apr_array_make(pool, 4, sizeof(svn_ra_svn_item_t));
1068 listitem = apr_array_push(item->u.list);
1085 const char **item, char first_char)
1089 /* Determine the item type and read it in. Make sure that c is the
1090 * first character at the end of the item so we can test to make
1118 if (item)
1137 *item = buf;
1158 if (item && *item == NULL)
1159 SVN_ERR(read_command_only(conn, pool, item, c));
1172 svn_ra_svn_item_t **item)
1178 *item = apr_palloc(pool, sizeof(**item));
1180 return read_item(conn, pool, *item, c, 0);
1310 svn_ra_svn_item_t *item;
1313 SVN_ERR(svn_ra_svn__read_item(conn, pool, &item));
1314 if (item->kind != SVN_RA_SVN_LIST)
1318 err = vparse_tuple(item->u.list, pool, &fmt, &ap);