Searched refs:tailptr (Results 1 – 2 of 2) sorted by relevance
702 struct conn_state *state, **tailptr; in add_connection() local746 for (tailptr = conns; *tailptr != NULL; tailptr = &(*tailptr)->next); in add_connection()747 *tailptr = state; in add_connection()1512 struct conn_state *conns = NULL, *state, **tailptr, *next, *winner; in k5_sendto() local1541 for (tailptr = &conns; *tailptr != NULL; tailptr = &(*tailptr)->next); in k5_sendto()1546 for (state = *tailptr; state != NULL && !done; state = state->next) { in k5_sendto()
2697 char *tailptr; in conf_get_number_e() local2703 res = strtol(str, &tailptr, 10); in conf_get_number_e()2704 if (res == LONG_MIN || res == LONG_MAX || *tailptr != '\0') in conf_get_number_e()