Home
last modified time | relevance | path

Searched refs:errDetail (Results 1 – 25 of 736) sorted by relevance

12345678910>>...30

/dports/databases/mongodb36/mongodb-src-r3.6.23/src/mongo/s/write_ops/
H A Dbatched_command_response_test.cpp90 errDetail->setIndex(i); in TEST()
91 errDetail->setErrCode(ErrorCodes::BadValue); in TEST()
92 errDetail->setErrMessage(bigstr); in TEST()
93 response.addToErrDetails(errDetail.release()); in TEST()
102 auto errDetail = errDetails[i].Obj(); in TEST() local
103 ASSERT_EQ(errDetail["index"].Int(), i); in TEST()
122 errDetail->setIndex(i); in TEST()
123 errDetail->setErrCode(ErrorCodes::BadValue); in TEST()
125 response.addToErrDetails(errDetail.release()); in TEST()
134 auto errDetail = errDetails[i].Obj(); in TEST() local
[all …]
H A Dbatched_command_response.cpp555 const WriteErrorDetail* errDetail = getErrDetails().front(); in toStatus() local
557 return Status(ErrorCodes::Error(errDetail->getErrCode()), errDetail->getErrMessage()); in toStatus()
561 const WriteConcernErrorDetail* errDetail = getWriteConcernError(); in toStatus() local
563 return Status(ErrorCodes::Error(errDetail->getErrCode()), errDetail->getErrMessage()); in toStatus()
/dports/audio/bambootracker/BambooTracker-0.4.5/BambooTracker/midi/
H A Dmidi.cpp72 bool MidiInterface::switchApi(std::string api, std::string* errDetail) in switchApi() argument
79 return switchApi(apiAvailable, errDetail); in switchApi()
82 return switchApi(RtMidi::RTMIDI_DUMMY, errDetail); in switchApi()
85 bool MidiInterface::switchApi(RtMidi::Api api, std::string* errDetail) in switchApi() argument
93 if (errDetail) *errDetail = ""; in switchApi()
97 if (errDetail) *errDetail = error.getMessage(); in switchApi()
190 bool MidiInterface::openInputPort(unsigned port, std::string* errDetail) in openInputPort() argument
205 if (errDetail) *errDetail = ""; in openInputPort()
209 if (errDetail) *errDetail = error.getMessage(); in openInputPort()
221 return openInputPort(i, errDetail);; in openInputPortByName()
[all …]
H A Dmidi.hpp47 bool switchApi(std::string api, std::string* errDetail = nullptr);
48 bool switchApi(RtMidi::Api api, std::string* errDetail = nullptr); // Use internal
55 bool openInputPort(unsigned port, std::string* errDetail = nullptr);
56 bool openInputPortByName(const std::string &portName, std::string* errDetail = nullptr);
/dports/www/squid/squid-4.15/src/
H A DHttpRequest.cc93 errDetail = ERR_DETAIL_NONE; in init()
240 errDetail = aReq->errDetail; in inheritProperties()
449 if (errType || errDetail) in detailError()
450 debugs(11, 5, HERE << "old error details: " << errType << '/' << errDetail); in detailError()
456 if (!errDetail) in detailError()
457 errDetail = aDetail; in detailError()
463 debugs(11, 7, HERE << "old error details: " << errType << '/' << errDetail); in clearError()
465 errDetail = ERR_DETAIL_NONE; in clearError()
H A Dclient_side_request.h157 void calloutsError(const err_type error, const int errDetail);
206 void handleAdaptationFailure(int errDetail, bool bypassable = false);
/dports/audio/bambootracker/BambooTracker-0.4.5/BambooTracker/stream/
H A Daudio_stream_rtaudio.cpp43 QString* errDetail) in initialize() argument
79 if (errDetail) *errDetail = ""; in initialize()
85 if (errDetail) *errDetail = QString::fromStdString(error.getMessage()); in initialize()
H A Daudio_stream.cpp68 const QString& backend, const QString& device, QString* errDetail) in initialize() argument
73 Q_UNUSED(errDetail) in initialize()
H A Daudio_stream_rtaudio.hpp41 QString* errDetail) override;
H A Daudio_stream.hpp54 QString* errDetail = nullptr);
/dports/audio/bambootracker/BambooTracker-0.4.5/BambooTracker/gui/
H A Dmainwindow.hpp244 inline void showStreamFailedDialog(const QString& errDetail) in showStreamFailedDialog() argument
248 + "\n\n" + errDetail, in showStreamFailedDialog()
260 inline void showMidiFailedDialog(const QString& errDetail) in showMidiFailedDialog() argument
264 + "\n\n" + errDetail, in showMidiFailedDialog()
/dports/multimedia/QtAV/QtAV-1.13.0/src/cuda/
H A Dcuda_api.h128 const char* errDetail = NULL; \
130 cuGetErrorString(cuR, &errDetail); \
131 … qWarning("CUDA error %s@%d. " #f ": %d %s - %s", __FILE__, __LINE__, cuR, errName, errDetail); \
/dports/www/squid/squid-4.15/src/format/
H A DFormat.cc953 out = Ssl::GetErrorName(al->request->errDetail, true); in assemble()
956 if (al->request && al->request->errDetail != ERR_DETAIL_NONE) { in assemble()
957 … if (al->request->errDetail > ERR_DETAIL_START && al->request->errDetail < ERR_DETAIL_MAX) in assemble()
958 out = errorDetailName(al->request->errDetail); in assemble()
960 if (al->request->errDetail >= ERR_DETAIL_EXCEPTION_START) in assemble()
962 … errorDetailName(al->request->errDetail), (uint32_t) al->request->errDetail); in assemble()
965 … errorDetailName(al->request->errDetail), al->request->errDetail); in assemble()
/dports/sysutils/istio/istio-1.6.7/security/pkg/stsservice/server/
H A Dserver.go168 func (s *Server) sendErrorResponse(w http.ResponseWriter, errorType string, errDetail error) {
177 ErrorDescription: errDetail.Error(),
/dports/security/vault/vault-1.8.2/vendor/github.com/hashicorp/vic/pkg/fetcher/
H A Dfetcher.go473 errDetail, err := extractErrResponseMessage(respBody)
478 if strings.Contains(errDetail, "does not have permission") {
479 errMsg = fmt.Sprintf("unauthorized: %s", errDetail)
481 errMsg += fmt.Sprintf("Message: %s", errDetail)
/dports/devel/awless/awless-0.1.11/vendor/golang.org/x/net/http2/
H A Dframe.go268 errDetail error member
464 return fr.errDetail
488 fr.errDetail = nil
527 fr.errDetail = errors.New(reason)
1522 fr.errDetail = invalid
1529 fr.errDetail = err
/dports/databases/tile38/tile38-1.12.0/vendor/golang.org/x/net/http2/
H A Dframe.go268 errDetail error member
464 return fr.errDetail
488 fr.errDetail = nil
527 fr.errDetail = errors.New(reason)
1522 fr.errDetail = invalid
1529 fr.errDetail = err
/dports/databases/timescaledb-backup/timescaledb-backup-0.1.1/vendor/github.com/docker/distribution/vendor/golang.org/x/net/http2/
H A Dframe.go267 errDetail error member
435 return fr.errDetail
459 fr.errDetail = nil
498 fr.errDetail = errors.New(reason)
1445 fr.errDetail = invalid
1449 fr.errDetail = err
/dports/security/vault/vault-1.8.2/vendor/github.com/hashicorp/vic/vendor/github.com/docker/docker/vendor/golang.org/x/net/http2/
H A Dframe.go267 errDetail error member
435 return fr.errDetail
459 fr.errDetail = nil
498 fr.errDetail = errors.New(reason)
1445 fr.errDetail = invalid
1449 fr.errDetail = err
/dports/security/vault/vault-1.8.2/vendor/github.com/hashicorp/vic/vendor/github.com/docker/distribution/vendor/golang.org/x/net/http2/
H A Dframe.go267 errDetail error member
435 return fr.errDetail
459 fr.errDetail = nil
498 fr.errDetail = errors.New(reason)
1445 fr.errDetail = invalid
1449 fr.errDetail = err
/dports/security/vault/vault-1.8.2/vendor/github.com/hashicorp/vic/vendor/github.com/docker/swarmkit/vendor/golang.org/x/net/http2/
H A Dframe.go267 errDetail error member
435 return fr.errDetail
459 fr.errDetail = nil
498 fr.errDetail = errors.New(reason)
1445 fr.errDetail = invalid
1449 fr.errDetail = err
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/workhorse/vendor/github.com/golang/gddo/vendor/golang.org/x/net/http2/
H A Dframe.go268 errDetail error member
464 return fr.errDetail
488 fr.errDetail = nil
527 fr.errDetail = errors.New(reason)
1522 fr.errDetail = invalid
1529 fr.errDetail = err
/dports/devel/gitlab-runner/gitlab-runner-8925d9a06fd8e452e2161a768462652a2a13111f/vendor/github.com/docker/distribution/distribution-2.7.0/vendor/golang.org/x/net/http2/
H A Dframe.go267 errDetail error member
435 return fr.errDetail
459 fr.errDetail = nil
498 fr.errDetail = errors.New(reason)
1445 fr.errDetail = invalid
1449 fr.errDetail = err
/dports/net/storj/storj-1.45.3/vendor/github.com/cloudfoundry/gosigar/vendor/golang.org/x/net/http2/
H A Dframe.go268 errDetail error member
464 return fr.errDetail
488 fr.errDetail = nil
527 fr.errDetail = errors.New(reason)
1522 fr.errDetail = invalid
1529 fr.errDetail = err
/dports/sysutils/istio/istio-1.6.7/vendor/github.com/docker/distribution/vendor/golang.org/x/net/http2/
H A Dframe.go267 errDetail error member
435 return fr.errDetail
459 fr.errDetail = nil
498 fr.errDetail = errors.New(reason)
1445 fr.errDetail = invalid
1449 fr.errDetail = err

12345678910>>...30