Searched refs:errorCode (Results 1 - 25 of 30) sorted by relevance

12

/haiku/src/preferences/time/
H A Dntp.h13 const char** errorString, int32* errorCode);
H A DTime.cpp108 int32 errorCode = 0; local
109 if (update_time(settings, &errorString, &errorCode) == B_OK) {
111 } else if (errorCode != 0) {
114 errorString, strerror(errorCode));
H A Dntp.cpp117 int32* errorCode)
147 *errorCode = errno;
182 *errorCode = errno;
193 *errorCode = errno;
116 ntp_update_time(const char* hostname, const char** errorString, int32* errorCode) argument
H A DNetworkTimeView.cpp408 int32 errorCode; local
409 if (message->FindInt32("error code", &errorCode) == B_OK) {
413 errorString, strerror(errorCode));
591 int32 errorCode = 0; local
593 &errorString, &errorCode);
598 if (errorCode != 0)
599 result.AddInt32("error code", errorCode);
623 int32* errorCode)
631 status = ntp_update_time(server, errorString, errorCode);
642 status = ntp_update_time(server, errorString, errorCode);
622 update_time(const Settings& settings, const char** errorString, int32* errorCode) argument
[all...]
H A DNetworkTimeView.h117 int32* errorCode);
/haiku/src/libs/posix_error_mapper/
H A Dmisc.cpp34 WRAPPER_FUNCTION(char*, strerror, (int errorCode),
35 return sReal_strerror(B_TO_NEGATIVE_ERROR(errorCode));
40 (int errorCode, char* buffer, size_t bufferSize),
41 return sReal_strerror_r(B_TO_NEGATIVE_ERROR(errorCode), buffer, bufferSize);
/haiku/src/add-ons/mail_daemon/inbound_filters/spam_filter/
H A DSpamFilter.cpp212 status_t errorCode;
213 if ((status = replyMessage.FindInt32("error", &errorCode)) != B_OK)
215 if (errorCode != B_OK)
216 return errorCode;
239 status_t errorCode = scriptingMessage.AddData("data", B_STRING_TYPE, local
241 if (errorCode != B_OK)
242 return errorCode;
244 errorCode = fMessengerToServer.SendMessage(&scriptingMessage,
246 if (errorCode != B_OK
247 || replyMessage.FindInt32("error", &errorCode) !
266 status_t errorCode = scriptingMessage.AddData ("data", B_STRING_TYPE, local
[all...]
/haiku/src/apps/haikudepot/server/
H A DUserDetailVerifierProcess.cpp114 int32 errorCode = WebAppInterface::ErrorCodeFromResponse(userDetailResponse); local
115 switch (errorCode) {
124 fModel->Nickname().String(), errorCode);
H A DIncrementViewCounterProcess.cpp88 int32 errorCode = WebAppInterface::ErrorCodeFromResponse(resultEnvelope); local
89 switch (errorCode) {
101 fPackage->Name().String(), errorCode);
H A DServerHelper.cpp51 int32 errorCode = 0; local
54 errorCode = WebAppInterface::ErrorCodeFromResponse(errorMessage);
58 switch (errorCode) {
81 " server [%" B_PRIi32 "]"), errorCode);
/haiku/src/system/kernel/
H A DUserEvent.cpp27 EventSignal(uint32 number, int32 signalCode, int32 errorCode, argument
30 Signal(number, signalCode, errorCode, sendingProcess),
111 int32 errorCode)
115 signalCode, errorCode, team->id);
181 int32 errorCode, pid_t sendingTeam)
185 signalCode, errorCode, sendingTeam);
110 Create(Team* team, uint32 signalNumber, int32 signalCode, int32 errorCode) argument
180 Create(Thread* thread, uint32 signalNumber, int32 signalCode, int32 errorCode, pid_t sendingTeam) argument
/haiku/headers/posix/
H A Dstring.h57 extern char *strerror(int errorCode);
58 extern int strerror_r(int errorCode, char *buffer, size_t bufferSize);
81 extern char *strerror_l(int errorCode, locale_t locale);
/haiku/src/tools/fs_shell/
H A Dstring.cpp186 fssh_strerror(int errorCode) argument
188 return strerror(errorCode);
194 fssh_strerror_r(int errorCode, char *buffer, fssh_size_t bufferSize)
196 return strerror_r(errorCode, buffer, bufferSize);
/haiku/headers/private/fs_shell/
H A Dfssh_string.h60 extern char *fssh_strerror(int errorCode);
61 extern int fssh_strerror_r(int errorCode, char *buffer,
/haiku/headers/private/kernel/
H A DUserEvent.h53 int32 signalCode, int32 errorCode);
71 int32 signalCode, int32 errorCode,
H A Dksignal.h83 int32 errorCode, pid_t sendingProcess);
/haiku/src/kits/network/libnetservices2/
H A DNetServicesMisc.cpp97 const char* origin, ErrorType type, status_t errorCode, const BString& customMessage)
101 fErrorCode(errorCode),
96 BNetworkRequestError( const char* origin, ErrorType type, status_t errorCode, const BString& customMessage) argument
/haiku/src/kits/mail/
H A Dmail_util.cpp273 status_t errorCode; local
346 errorCode = convert_from_utf8(dstEncoding, src, srcLen, dst, dstLen, state,
348 if (errorCode != B_OK)
349 return errorCode;
367 errorCode = convert_from_utf8(dstEncoding, "a", &tempSrcLen,
369 if (errorCode != B_OK)
370 return errorCode;
919 status_t errorCode; local
935 errorCode = in.Read (&c,1); // A really slow way of reading - unbuffered.
936 if (errorCode !
[all...]
/haiku/src/libs/glut/
H A DglutWindow.h34 void ErrorCallback(unsigned long errorCode);
H A DglutEvent.cpp871 void GlutWindow::ErrorCallback(unsigned long errorCode) { argument
872 __glutWarning("GL error: %s", gluErrorString(errorCode));
/haiku/headers/private/netservices2/
H A DNetServicesDefs.h61 status_t errorCode, const BString& customMessage = BString());
/haiku/src/tests/system/libroot/posix/
H A Dtst-wprintf2.c107 error(int exitCode, int errorCode, const char* message) argument
/haiku/src/apps/haikudepot/ui/
H A DToLatestUserUsageConditionsWindow.cpp373 int32 errorCode = WebAppInterface::ErrorCodeFromResponse(responsePayload); local
374 if (errorCode == ERROR_CODE_NONE) {
H A DUserLoginWindow.cpp531 int32 errorCode = WebAppInterface::ErrorCodeFromResponse(responsePayload); local
533 if (errorCode == ERROR_CODE_NONE)
1329 int32 errorCode = WebAppInterface::ErrorCodeFromResponse(responsePayload); local
1331 switch (errorCode) {
/haiku/src/apps/mail/
H A DMailWindow.cpp2730 status_t errorCode = -1; local
2739 errorCode = fileEntry.SetTo(fRef, true);
2740 if (errorCode != B_OK)
2742 errorCode = fileEntry.GetPath(&filePath);
2743 if (errorCode != B_OK)
2752 errorCode = be_roster->Launch (kSpamServerSignature);
2753 if (errorCode != B_OK) {
2765 errorCode = be_roster->Launch(&ref);
2766 if (errorCode == B_OK)
2769 if (errorCode !
[all...]

Completed in 174 milliseconds

12