Home
last modified time | relevance | path

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

/titanic_41/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
/titanic_41/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()
/titanic_41/usr/src/cmd/cmd-inet/usr.bin/
H A Ddns-sd.c232 DNSServiceErrorType errorCode, const char *replyDomain, void *context) in enum_reply() argument
246 if (errorCode) in enum_reply()
247 printf("Error code %d\n", errorCode); in enum_reply()
292 …DNSServiceRef client, const DNSServiceFlags flags, uint32_t ifIndex, DNSServiceErrorType errorCode, in browse_reply() argument
300 if (errorCode) printf("Error code %d\n", errorCode); in browse_reply()
339 …DNSServiceRef client, const DNSServiceFlags flags, uint32_t ifIndex, DNSServiceErrorType errorCode, in resolve_reply() argument
350 if (errorCode) printf("Error code %d\n", errorCode); in resolve_reply()
416 …SSD_API reg_reply(DNSServiceRef client, const DNSServiceFlags flags, DNSServiceErrorType errorCode, in reg_reply() argument
425 if (errorCode == kDNSServiceErr_NoError) in reg_reply()
430 else if (errorCode == kDNSServiceErr_NameConflict) in reg_reply()
[all …]
/titanic_41/usr/src/lib/libdns_sd/common/
H A Ddnssd_clientstub.c649 DNSServiceErrorType errorCode; in handle_query_response() local
658 errorCode = get_error_code(&data); in handle_query_response()
666 if (!errorCode && str_error) errorCode = kDNSServiceErr_Unknown; in handle_query_response()
667 …((DNSServiceQueryRecordReply)sdr->app_callback)(sdr, flags, interfaceIndex, errorCode, name, rrtyp… in handle_query_response()
737 DNSServiceErrorType errorCode; in handle_browse_response() local
745 errorCode = get_error_code(&data); in handle_browse_response()
749 if (!errorCode && str_error) errorCode = kDNSServiceErr_Unknown; in handle_browse_response()
750 …((DNSServiceBrowseReply)sdr->app_callback)(sdr, flags, interfaceIndex, errorCode, replyName, reply… in handle_browse_response()
837 DNSServiceErrorType errorCode; in handle_regservice_response() local
844 errorCode = get_error_code(&data); in handle_regservice_response()
[all …]
H A Ddns_sd.h491 DNSServiceErrorType errorCode,
574 DNSServiceErrorType errorCode,
839 DNSServiceErrorType errorCode,
958 DNSServiceErrorType errorCode,
1077 DNSServiceErrorType errorCode,
1183 DNSServiceErrorType errorCode,
/titanic_41/usr/src/lib/libdns_sd/java/common/
H A DJNISupport.c363 DNSServiceErrorType errorCode, const char *serviceName, const char *regtype, in ServiceBrowseReply() argument
372 if ( errorCode == kDNSServiceErr_NoError) in ServiceBrowseReply()
382 ReportError( pContext->Env, pContext->ClientObj, pContext->JavaObj, errorCode); in ServiceBrowseReply()
428 DNSServiceErrorType errorCode, const char *fullname, const char *hosttarget, in ServiceResolveReply() argument
446 if ( errorCode == kDNSServiceErr_NoError) in ServiceResolveReply()
468 ReportError( pContext->Env, pContext->ClientObj, pContext->JavaObj, errorCode); in ServiceResolveReply()
513 DNSServiceErrorType errorCode, const char *serviceName, in ServiceRegisterReply() argument
522 if ( errorCode == kDNSServiceErr_NoError) in ServiceRegisterReply()
531 ReportError( pContext->Env, pContext->ClientObj, pContext->JavaObj, errorCode); in ServiceRegisterReply()
727 DNSServiceErrorType errorCode, void *context) in RegisterRecordReply() argument
[all …]
/titanic_41/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;
/titanic_41/usr/src/lib/libdns_sd/java/com/apple/dnssd/docs/examples/src/
H A DSwingQueryListener.java57 public void operationFailed( DNSSDService service, int errorCode) in operationFailed() argument
60 fErrorCode = errorCode; in operationFailed()
H A DSwingResolveListener.java57 public void operationFailed( DNSSDService service, int errorCode) in operationFailed() argument
60 fErrorCode = errorCode; in operationFailed()
H A DSwingDomainListener.java58 public void operationFailed( DNSSDService service, int errorCode) in operationFailed() argument
61 fErrorCode = errorCode; in operationFailed()
H A DSwingBrowseListener.java57 public void operationFailed( DNSSDService service, int errorCode) in operationFailed() argument
60 fErrorCode = errorCode; in operationFailed()
H A DSimpleChat.java163 public void operationFailed( DNSSDService service, int errorCode) in operationFailed() argument
165 System.out.println( "Service reported error " + String.valueOf( errorCode)); in operationFailed()
292 public void operationFailed( DNSSDService service, int errorCode) in operationFailed() argument
294 System.out.println( "Service reported error " + String.valueOf( errorCode)); in operationFailed()
H A DBrowserApp.java190 public void operationFailed( DNSSDService service, int errorCode) in operationFailed() argument
250 public void operationFailed( DNSSDService service, int errorCode) in operationFailed() argument
395 public void operationFailed( DNSSDService service, int errorCode) in operationFailed() argument
/titanic_41/usr/src/lib/libdns_sd/java/com/apple/dnssd/
H A DBaseListener.java49 void operationFailed( DNSSDService service, int errorCode); in operationFailed() argument
H A DDNSSD.java530 public AppleDNSSDException( int errorCode) { fErrorCode = errorCode; } in AppleDNSSDException() argument
/titanic_41/usr/src/lib/nsswitch/mdns/common/
H A Dmdns_common.c158 uint32_t ifIndex, DNSServiceErrorType errorCode, in _nss_mdns_querynamereply() argument
176 if (errorCode != kDNSServiceErr_NoError) { in _nss_mdns_querynamereply()
298 uint32_t ifIndex, DNSServiceErrorType errorCode, in _nss_mdns_queryaddrreply() argument
315 if (errorCode != kDNSServiceErr_NoError) { in _nss_mdns_queryaddrreply()
/titanic_41/usr/src/cmd/scadm/sparc/mpxu/common/
H A Dadm.h78 void ADM_Exit(int errorCode);