Lines Matching defs:from
1891 gettext("Partial result from Native LDAP"), EINVAL},
1939 * Get status code from string
2016 * either the 'to' OR 'from' pointers are NULL.
2019 idmap_strdupnull(char **to, const char *from)
2024 if (from == NULL || *from == '\0') {
2029 *to = strdup(from);
2037 idmap_namerule_cpy(idmap_namerule *to, idmap_namerule *from)
2044 (void) memcpy(to, from, sizeof (idmap_namerule));
2049 retval = idmap_strdupnull(&to->windomain, from->windomain);
2053 retval = idmap_strdupnull(&to->winname, from->winname);
2060 retval = idmap_strdupnull(&to->unixname, from->unixname);
2074 * Move the contents of the "info" structure from "from" to "to".
2077 idmap_info_mov(idmap_info *to, idmap_info *from)
2079 (void) memcpy(to, from, sizeof (idmap_info));
2080 (void) memset(from, 0, sizeof (idmap_info));
2384 idmap_trace_print_id(out, entry, "from");