Lines Matching refs:count
69 int count = 0;
72 for (count=0; db_args && db_args[count]; count++);
73 if (count == 0) {
78 handle->db_args = calloc(sizeof(char*), count+1);
84 for (count=0; db_args[count]; count++) {
85 handle->db_args[count] = strdup(db_args[count]);
86 if (handle->db_args[count] == NULL) {
94 for (count=0; handle->db_args[count]; count++)
95 free(handle->db_args[count]);
105 int count;
108 for (count=0; handle->db_args[count]; count++)
109 free(handle->db_args[count]);