HomeSort by relevance Sort by last modified time
    Searched refs:ULIST (Results 1 - 19 of 19) sorted by null

  /external/clearsilver/util/
ulist.h 22 } ULIST;
28 NEOERR * uListInit(ULIST **ul, int size, int flags);
29 NEOERR * uListvInit(ULIST **ul, ...);
30 int uListLength (ULIST *ul);
31 NEOERR * uListAppend (ULIST *ul, void *data);
32 NEOERR * uListPop (ULIST *ul, void **data);
33 NEOERR * uListInsert (ULIST *ul, int x, void *data);
34 NEOERR * uListDelete (ULIST *ul, int x, void **data);
35 NEOERR * uListGet (ULIST *ul, int x, void **data);
36 NEOERR * uListSet (ULIST *ul, int x, void *data)
    [all...]
neo_files.h 19 #include "util/ulist.h"
30 NEOERR *ne_listdir(const char *path, ULIST **files);
31 NEOERR *ne_listdir_match(const char *path, ULIST **files, const char *match);
32 NEOERR *ne_listdir_fmatch(const char *path, ULIST **files, MATCH_FUNC fmatch,
ulist.c 20 #include "ulist.h"
24 static NEOERR *check_resize (ULIST *ul, int size)
41 "Unable to resize ULIST to %d: Out of memory", new_size);
51 NEOERR *uListInit(ULIST **ul, int size, int flags)
53 ULIST *r_ul;
61 r_ul = (ULIST *) calloc (1, sizeof (ULIST));
64 return nerr_raise(NERR_NOMEM, "Unable to create ULIST: Out of memory");
70 return nerr_raise(NERR_NOMEM, "Unable to create ULIST: Out of memory");
81 NEOERR *uListvInit(ULIST **ul, ...
    [all...]
rcfs.h 30 NEOERR * rcfs_listdir (const char *path, ULIST **list);
wdb.h 17 #include "util/ulist.h"
56 ULIST *cols_l;
79 const char *key, ULIST *col_def, int flags);
92 * data - pointer to a ULIST of the columns.
97 NEOERR * wdb_keys (WDB *wdb, char **primary_key, ULIST **data);
neo_files.c 195 NEOERR *ne_listdir(const char *path, ULIST **files)
205 NEOERR *ne_listdir_match(const char *path, ULIST **files, const char *match)
210 NEOERR *ne_listdir_fmatch(const char *path, ULIST **files, MATCH_FUNC fmatch,
215 ULIST *myfiles = NULL;
neo_rand.c 21 #include "ulist.h"
71 static ULIST *Words = NULL;
neo_str.h 67 /* typedef struct _ulist ULIST; */
68 #include "util/ulist.h"
71 NEOERR *string_array_split (ULIST **list, char *s, const char *sep,
rcfs.c 212 NEOERR * rcfs_listdir (const char *path, ULIST **list)
216 ULIST *files;
neo_err.c 22 #include "ulist.h"
39 static ULIST *Errors = NULL;
wdb.c 36 #include "ulist.h"
1005 const char *key, ULIST *col_def, int flags)
    [all...]
neo_str.c 24 #include "ulist.h"
214 NEOERR *string_array_split (ULIST **list, char *s, const char *sep,
neo_hdf.c 29 #include "ulist.h"
906 * load them all into a ULIST, qsort'ing the list, and then dumping them
911 ULIST *level = NULL;
    [all...]
  /external/clearsilver/util/test/
ulist_test.c 13 * Tests for ulist library
18 #include "util/ulist.h"
22 ULIST *arr;
listdir_test.c 6 #include "util/ulist.h"
12 ULIST *files = NULL;
net_test.c 12 #include "util/ulist.h"
25 NEOERR *client_proc(int port, ULIST *stuff)
66 NEOERR *server_proc(int port, ULIST *stuff)
132 ULIST *stuff;
  /external/clearsilver/cgi/
cgi.h 74 ULIST *files;
80 ULIST *filenames;
  /external/clearsilver/cs/
cs.h 47 #include "util/ulist.h"
270 ULIST *stack;
271 ULIST *alloc; /* list of strings owned by CSPARSE and free'd when
  /external/clearsilver/imd/
imd.c 492 NEOERR *load_images (char *path, ULIST **rfiles, char *partial, int descend)
500 ULIST *files = NULL;
726 ULIST *files = NULL;
876 ULIST *files = NULL;
877 ULIST *albums = NULL;
931 ULIST *files = NULL;

Completed in 154 milliseconds