Lines Matching defs:tmp_entry
1773 struct sysdb_netgroup_ctx **tmp_entry = NULL;
1797 tmp_entry = talloc_array(tmp_ctx, struct sysdb_netgroup_ctx *, size + 1);
1798 if (tmp_entry == NULL) {
1817 tmp_entry[c] = talloc_zero(tmp_entry,
1819 if (!tmp_entry[c]) {
1824 tmp_entry[c]->type = SYSDB_NETGROUP_TRIPLE_VAL;
1825 ret = sysdb_netgr_split_triple(tmp_entry[c],
1827 &tmp_entry[c]->value.triple.hostname,
1828 &tmp_entry[c]->value.triple.username,
1829 &tmp_entry[c]->value.triple.domainname);
1844 tmp_entry[c] = talloc_zero(tmp_entry,
1846 if (!tmp_entry[c]) {
1851 tmp_entry[c]->type = SYSDB_NETGROUP_GROUP_VAL;
1852 tmp_entry[c]->value.groupname = talloc_strndup(tmp_entry[c],
1855 if (tmp_entry[c]->value.groupname == NULL) {
1867 tmp_entry[c] = NULL;
1869 *entries = talloc_steal(mem_ctx, tmp_entry);