Searched refs:new_proto (Results 1 – 1 of 1) sorted by relevance
147 struct protoent new_proto; in __proto_marshal_func() local191 memcpy(&new_proto, proto, sizeof(struct protoent)); in __proto_marshal_func()199 if (new_proto.p_name != NULL) { in __proto_marshal_func()200 size = strlen(new_proto.p_name); in __proto_marshal_func()201 memcpy(p, new_proto.p_name, size); in __proto_marshal_func()202 new_proto.p_name = p; in __proto_marshal_func()206 if (new_proto.p_aliases != NULL) { in __proto_marshal_func()208 memcpy(p, new_proto.p_aliases, sizeof(char *) * aliases_size); in __proto_marshal_func()209 new_proto.p_aliases = (char **)p; in __proto_marshal_func()212 for (alias = new_proto.p_aliases; *alias; ++alias) { in __proto_marshal_func()[all …]