Home
last modified time | relevance | path

Searched refs:protocolName (Results 1 – 3 of 3) sorted by relevance

/netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/
H A Dsocket.d495 string protocolName; /// ditto
502 protocolName = to!string(serv.s_proto);
530 bool getServiceByName(in char[] name, in char[] protocolName = null) @trusted nothrow
533 serv = getservbyname(name.tempCString(), protocolName.tempCString());
542 bool getServiceByPort(ushort port, in char[] protocolName = null) @trusted nothrow
545 serv = getservbyport(port, protocolName.tempCString());
571 assert(serv.protocolName == "tcp");
2663 this(AddressFamily af, SocketType type, in char[] protocolName) @trusted
2666 proto = getprotobyname(protocolName.tempCString());
/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/
H A Dsocket.d494 string protocolName; /// ditto
501 protocolName = to!string(serv.s_proto);
529 …bool getServiceByName(scope const(char)[] name, scope const(char)[] protocolName = null) @trusted …
532 serv = getservbyname(name.tempCString(), protocolName.tempCString());
541 bool getServiceByPort(ushort port, scope const(char)[] protocolName = null) @trusted nothrow
544 serv = getservbyport(port, protocolName.tempCString());
571 assert(serv.protocolName == "tcp");
2707 this(AddressFamily af, SocketType type, scope const(char)[] protocolName) @trusted
2710 proto = getprotobyname(protocolName.tempCString());
/netbsd-src/external/apache2/llvm/dist/clang/lib/Parse/
H A DParseObjc.cpp2038 IdentifierInfo *protocolName = Tok.getIdentifierInfo(); in ParseObjCAtProtocolDeclaration() local
2042 IdentifierLocPair ProtoInfo(protocolName, nameLoc); in ParseObjCAtProtocolDeclaration()
2050 ProtocolRefs.push_back(std::make_pair(protocolName, nameLoc)); in ParseObjCAtProtocolDeclaration()
2085 AtLoc, protocolName, nameLoc, ProtocolRefs.data(), ProtocolRefs.size(), in ParseObjCAtProtocolDeclaration()