Searched defs:getprotobyname_r (Results 1 - 1 of 1) sorted by relevance

/vbox/src/libs/xpcom18a4/nsprpub/pr/src/misc/
H A Dprnetdb.c84 * Some platforms have the reentrant getprotobyname_r() and
1177 * complain if getprotobyname_r() is implemented on some system and
1182 static struct protoent *getprotobyname_r(const char* name) function
1189 } /* getprotobyname_r */
1233 if (NULL == getprotobyname_r(name, res, buffer, buflen))
1244 if (-1 == getprotobyname_r(name, res, (struct protoent_data*)buffer))
1250 /* The 5th argument for getprotobyname_r() cannot be NULL */
1251 if (-1 == getprotobyname_r(name, res, buffer, buflen, &res))
1260 staticBuf = getprotobyname_r(name);

Completed in 37 milliseconds