Lines Matching defs:controls
75 char **controls;
1505 while (old_list->nsServers[i]->controls &&
1506 old_list->nsServers[i]->controls[j]) {
1507 free(old_list->nsServers[i]->controls[j]);
1510 free(old_list->nsServers[i]->controls);
1619 server->controls = (char **)calloc(CHUNK_SIZE, sizeof (char *));
1621 if (server->controls == NULL || server->saslMech == NULL) {
1667 ptr = (char **)realloc(server->controls,
1683 server->controls = ptr;
1686 server->controls[sc_counter] = strdup(val);
1687 if (server->controls[sc_counter] == NULL) {
1704 server->controls[sc_counter] = NULL;
2147 * or name, server controls and supported SASL mechanisms.
2365 ret->controls = __s_api_cp2dArray(server->controls);
2424 __s_api_free2dArray(current_list->nsServers[i]->controls);
2425 current_list->nsServers[i]->controls = NULL;