Home
last modified time | relevance | path

Searched refs:errorCode (Results 1 – 10 of 10) sorted by relevance

/illumos-gate/usr/src/lib/libslp/javalib/com/sun/slp/
H A DServiceLocationException.java206 private short errorCode = OK; field in ServiceLocationException
216 ServiceLocationException(short errorCode, String msgTag, Object[] params) { in ServiceLocationException() argument
220 this.errorCode = errorCode; in ServiceLocationException()
237 return errorCode; in getErrorCode()
H A DServiceTable.java515 short errorCode = in register() local
539 new ServiceLocationException(errorCode, in register()
555 new ServiceLocationException(errorCode, in register()
740 short errorCode = ServiceLocationException.OK; in deregister() local
873 short errorCode = ServiceLocationException.OK; in findServiceTypes() local
952 short errorCode = ServiceLocationException.OK; in findServices() local
1066 short errorCode = ServiceLocationException.OK; in findAttributes() local
/illumos-gate/usr/src/cmd/pools/poold/com/sun/solaris/service/pools/
H A DPoolsException.java643 private final int errorCode = PoolInternal.pool_error(); field in PoolsException
653 private static String description(int errorCode) in description() argument
656 errorCode)); in description()
657 if (errorCode == PoolInternal.POE_SYSTEM) in description()
669 return (errorCode); in getCode()
/illumos-gate/usr/src/contrib/mDNSResponder/Clients/
H A Ddns-sd.c597 if (errorCode) in enum_reply()
675 if (errorCode) { printf("Error code %d\n", errorCode); return; } in zonedata_resolve()
728 if (errorCode) { printf("Error code %d\n", errorCode); return; } in zonedata_browse()
745 if (errorCode) in browse_reply()
807 else if (errorCode) printf("error code %d\n", errorCode); in resolve_reply()
892 if (errorCode == kDNSServiceErr_NoError) in reg_reply()
912 printf("Error %d\n", errorCode); in reg_reply()
1172 if (errorCode) in qr_reply()
1204 if (errorCode && errorCode != kDNSServiceErr_DoubleNAT) printf("Error code %d\n", errorCode); in port_mapping_create_reply()
1266 if (errorCode) in addrinfo_reply()
[all …]
/illumos-gate/usr/src/contrib/mDNSResponder/mDNSShared/
H A Ddns_sd.h1088 DNSServiceErrorType errorCode,
1184 DNSServiceErrorType errorCode,
1490 DNSServiceErrorType errorCode,
1619 DNSServiceErrorType errorCode,
1746 DNSServiceErrorType errorCode,
1861 DNSServiceErrorType errorCode,
1982 DNSServiceErrorType errorCode,
2205 DNSServiceErrorType errorCode,
2747 DNSServiceErrorType errorCode,
H A Ddnssd_clientstub.c2523 DNSServiceErrorType errorCode, void *context) in SleepKeepaliveCallback() argument
2533 ((DNSServiceSleepKeepaliveReply)ka->AppCallback)(sdRef, errorCode, ka->AppContext); in SleepKeepaliveCallback()
/illumos-gate/usr/src/lib/sun_fc/common/
H A DExceptions.h47 HBAException(HBA_STATUS err) : errorCode(err) { in HBAException()
52 HBA_STATUS getErrorCode() { return errorCode; } in getErrorCode()
54 HBA_STATUS errorCode;
/illumos-gate/usr/src/lib/nsswitch/mdns/common/
H A Dmdns_common.c156 uint32_t ifIndex, DNSServiceErrorType errorCode, in _nss_mdns_querynamereply() argument
174 if (errorCode != kDNSServiceErr_NoError) { in _nss_mdns_querynamereply()
296 uint32_t ifIndex, DNSServiceErrorType errorCode, in _nss_mdns_queryaddrreply() argument
313 if (errorCode != kDNSServiceErr_NoError) { in _nss_mdns_queryaddrreply()
/illumos-gate/usr/src/cmd/scadm/sparc/mpxu/common/
H A Dadm.h76 void ADM_Exit(int errorCode);
/illumos-gate/usr/src/contrib/mDNSResponder/mDNSCore/
H A DmDNS.c685 UErrorCode errorCode = U_ZERO_ERROR; in PunycodeConvert() local
687 … UIDNA *uts46 = uidna_openUTS46(UIDNA_USE_STD3_RULES|UIDNA_NONTRANSITIONAL_TO_UNICODE, &errorCode); in PunycodeConvert()
688 …UTF8(uts46, (const char *)src+1, src[0], (char *)dst+1, (int32_t)(end-(dst+1)), &info, &errorCode); in PunycodeConvert()
691 if (errorCode) LogMsg("uidna_nameToASCII_UTF8(%##s) failed errorCode %d", src, errorCode); in PunycodeConvert()
695 if (errorCode || info.errors || len > MAX_DOMAIN_LABEL) return mDNSNULL; in PunycodeConvert()