Lines Matching defs:controls
75 char **controls;
1550 while (old_list->nsServers[i]->controls &&
1551 old_list->nsServers[i]->controls[j]) {
1552 free(old_list->nsServers[i]->controls[j]);
1555 free(old_list->nsServers[i]->controls);
1666 server->controls = (char **)calloc(CHUNK_SIZE, sizeof (char *));
1668 if (server->controls == NULL || server->saslMech == NULL) {
1671 if (server->controls != NULL)
1672 free(server->controls);
1718 ptr = (char **)realloc(server->controls,
1734 server->controls = ptr;
1737 server->controls[sc_counter] = strdup(val);
1738 if (server->controls[sc_counter] == NULL) {
1755 server->controls[sc_counter] = NULL;
2206 * or name, server controls and supported SASL mechanisms.
2424 ret->controls = __s_api_cp2dArray(server->controls);
2484 __s_api_free2dArray(current_list->nsServers[i]->controls);
2485 current_list->nsServers[i]->controls = NULL;