Lines Matching refs:itera
53 #define __ITER_CREATE(itera, argu, ityp)\ argument
54 itera = calloc(1, sizeof (*itera));\
55 if (itera == NULL) {\
61 free(itera);\
65 itera->type = ityp;\
66 itera->retcode = IDMAP_NEXT;\
67 itera->limit = 1024;\
68 itera->arg = argu;
70 #define __ITER_CHECK(itera, ityp)\ argument
71 if (itera == NULL) {\
75 if (itera->type != ityp) {\