HomeSort by relevance Sort by last modified time
    Searched full:error_message (Results 76 - 100 of 359) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/v8/tools/testrunner/server/
work_handler.py 76 def _SendResponse(self, error_message=None):
78 if error_message:
79 compression.Send([[-1, error_message]], self.request)
  /system/update_engine/
chrome_browser_proxy_resolver.cc 133 const string& error_message) {
136 if (!error_message.empty()) {
137 LOG(WARNING) << "ProxyResolved error: " << error_message;
chrome_browser_proxy_resolver_unittest.cc 76 const string& error_message);
103 const string& error_message) {
106 source_url, proxy_info, error_message);
common_service.cc 169 string error_message; local
171 in_target_channel, in_is_powerwash_allowed, &error_message)) {
172 LogAndSetError(error, FROM_HERE, error_message);
chrome_browser_proxy_resolver.h 66 const std::string& error_message);
  /external/chromium-trace/catapult/dashboard/dashboard/
update_bug_with_results.py 130 error_message = bisect_fyi.VerifyBisectFYIResults(job)
132 error_message += '\nFailed to update bug with bisect results.'
134 error_message = 'Failed to update bug with bisect results: %s' % e
135 if job.results_data['status'] == FAILED or error_message:
136 _SendFYIBisectEmail(job, error_message)
  /external/opencv3/modules/core/src/
lda.cpp 45 String error_message = "Wrong shape of input matrix! Expected a matrix with one row or column."; local
46 CV_Error(Error::StsBadArg, error_message);
57 String error_message = "The data is expected as InputArray::STD_VECTOR_MAT (a std::vector<Mat>) or _InputArray::STD_VECTOR_VECTOR (a std::vector< std::vector<...> >)."; local
58 CV_Error(Error::StsBadArg, error_message);
73 String error_message = format("Wrong number of elements in matrix #%d! Expected %d was %d.", i, (int)d, (int)src.getMat(i).total()); local
74 CV_Error(Error::StsBadArg, error_message);
181 String error_message = format("Wrong shapes for given matrices. Was size(src) = (%d,%d), size(W) = (%d,%d).", src.rows, src.cols, W.rows, W.cols); local
182 CV_Error(Error::StsBadArg, error_message);
186 String error_message = format("Wrong mean shape for the given data matrix. Expected %d, but was %d.", d, mean.total()); local
187 CV_Error(Error::StsBadArg, error_message);
219 String error_message = format("Wrong shapes for given matrices. Was size(src) = (%d,%d), size(W) = (%d,%d).", src.rows, src.cols, W.rows, W.cols); local
224 String error_message = format("Wrong mean shape for the given eigenvector matrix. Expected %d, but was %d.", W.cols, mean.total()); local
1015 String error_message = "At least two classes are needed to perform a LDA. Reason: Only one class was given!"; local
1020 String error_message = format("The number of samples must equal the number of labels. Given %d labels, %d samples. ", labels.size(), N); local
1103 String error_message= format("InputArray Datatype %d is not supported.", _src.kind()); local
    [all...]
  /toolchain/binutils/binutils-2.25/bfd/
elf32-dlx.c 59 char **error_message)
69 input_section, output_bfd, error_message);
119 char **error_message ATTRIBUTE_UNUSED)
131 input_section, output_bfd, error_message);
181 char **error_message ATTRIBUTE_UNUSED)
193 input_section, output_bfd, error_message);
  /external/webrtc/tools/network_emulator/
network_emulator.py 145 error_message = 'Failed to create Dummynet pipe. '
147 error_message += ('Make sure you have loaded the ipfw_mod.ko module to '
149 _run_ipfw_command(cmd, error_message)
  /external/e2fsprogs/lib/et/
com_err.c 41 fputs(error_message(code), stderr);
  /external/e2fsprogs/lib/ext2fs/
inline.c 102 retval ? error_message(retval) : "OK");
  /external/e2fsprogs/resize/
test_extent.c 72 error_message(retval));
  /external/libchrome/sandbox/linux/seccomp-bpf-helpers/
sigsys_handlers.cc 45 // Write |error_message| to stderr. Similar to RawLog(), but a bit more careful
48 void WriteToStdErr(const char* error_message, size_t size) {
52 const int ret = HANDLE_EINTR(write(STDERR_FILENO, error_message, size));
56 error_message += ret;
  /bionic/libc/arch-arm/cortex-a15/bionic/
__strcat_chk_common.S 199 ldr r0, error_message
206 error_message: label
memset.S 51 ldr r0, error_message
58 error_message: label
  /bionic/libc/arch-arm/cortex-a7/bionic/
memset.S 51 ldr r0, error_message
58 error_message: label
  /bionic/libc/arch-arm/cortex-a9/bionic/
__strcat_chk.S 207 ldr r0, error_message
214 error_message: label
__strcpy_chk.S 171 ldr r0, error_message
179 error_message: label
memset.S 49 ldr r0, error_message
56 error_message: label
  /bionic/libc/arch-arm/denver/bionic/
__strcat_chk.S 203 ldr r0, error_message
210 error_message: label
memset.S 54 ldr r0, error_message
61 error_message: label
  /bionic/libc/arch-arm/krait/bionic/
__strcat_chk.S 199 ldr r0, error_message
206 error_message: label
  /external/autotest/client/cros/cellular/wardmodem/
at_transceiver.py 733 def _runtime_error(self, error_message):
737 @param error_message: The error message.
742 self._logger.error(error_message)
743 raise wme.ATTransceiverException(error_message)
746 def _setup_error(self, error_message):
750 @param error_message: The error message.
755 self._logger.error(error_message)
756 raise wme.WardModemSetupException(error_message)
  /external/webrtc/tools/python_charts/webrtc/
main.py 155 def ShowErrorPage(error_message):
156 print '<html><body>%s</body></html>' % error_message
  /system/connectivity/dhcp_client/
dhcp_message.h 72 void SetErrorMessage(const std::string& error_message);
92 const std::string& error_message() const { return error_message_; } function in class:dhcp_client::DHCPMessage

Completed in 492 milliseconds

1 2 34 5 6 7 8 91011>>