HomeSort by relevance Sort by last modified time
    Searched defs:Error (Results 126 - 150 of 1444) sorted by null

1 2 3 4 56 7 8 91011>>

  /prebuilts/go/linux-x86/src/cmd/go/internal/web/
http.go 51 func (e *HTTPError) Error() string {
56 func Get(url string) ([]byte, error) {
76 func GetMaybeInsecure(importPath string, security SecurityMode) (urlStr string, body io.ReadCloser, err error) {
77 fetch := func(scheme string) (urlStr string, res *http.Response, err error) {
  /prebuilts/go/linux-x86/src/crypto/aes/
cipher.go 23 func (k KeySizeError) Error() string {
31 func NewCipher(key []byte) (cipher.Block, error) {
44 func newCipherGeneric(key []byte) (cipher.Block, error) {
  /prebuilts/go/linux-x86/src/crypto/des/
cipher.go 18 func (k KeySizeError) Error() string {
28 func NewCipher(key []byte) (cipher.Block, error) {
50 func NewTripleDESCipher(key []byte) (cipher.Block, error) {
  /prebuilts/go/linux-x86/src/encoding/csv/
writer.go 40 func (w *Writer) Write(record []string) error {
65 var err error
91 var err error
101 // To check if an error occurred during the Flush, call Error.
106 // Error reports any error that has occurred during a previous Write or Flush.
107 func (w *Writer) Error() error {
113 func (w *Writer) WriteAll(records [][]string) error {
    [all...]
  /prebuilts/go/linux-x86/src/html/template/
content_test.go 416 func (s *errorer) Error() string {
417 return fmt.Sprintf("error=%d", s.v)
436 expect = "error=7"
447 testData := struct{ E error }{} // any non-empty interface here will do; error is just ready at hand
  /prebuilts/go/linux-x86/src/os/user/
user.go 53 func (e UnknownUserIdError) Error() string {
61 func (e UnknownUserError) Error() string {
69 func (e UnknownGroupIdError) Error() string {
77 func (e UnknownGroupError) Error() string {
  /prebuilts/go/linux-x86/src/runtime/
chanbarrier_test.go 19 func (myError) Error() string { return "" }
21 func doRequest(useSelect bool) (*response, error) {
24 err error
  /prebuilts/ndk/r16/sources/third_party/shaderc/libshaderc_util/include/libshaderc_util/
message.h 25 Error,
34 // Given a glslang warning/error message, processes it in the following way and
41 // * Places the rest of the message (the text past warning/error prefix, source
50 // "ERROR: 0:2: Message"
54 // "ERROR: 2 errors found."
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/CodeWarrior/
__init__.py 9 Error = aetools.Error
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/Explorer/
__init__.py 9 Error = aetools.Error
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/Finder/
__init__.py 9 Error = aetools.Error
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/Netscape/
__init__.py 9 Error = aetools.Error
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/StdSuites/
__init__.py 10 Error = aetools.Error
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/SystemEvents/
__init__.py 9 Error = aetools.Error
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/Terminal/
__init__.py 9 Error = aetools.Error
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/
macostools.py 21 Error = 'macostools.Error'
  /system/keymaster/android_keymaster/
logger.cpp 65 int Logger::Error(const char* fmt, ...) {
  /test/vti/test_serving/gae/webapp/src/handlers/
errors.py 20 class Error(Exception):
31 super(Error, self).__init__(self.code, self.msg)
37 class FormValidationError(Error):
50 class AclError(Error):
51 """Base ACL error."""
  /tools/test/connectivity/acts/framework/acts/controllers/utils_lib/commands/
route.py 21 class Error(Exception):
25 class NetworkInterfaceDown(Error):
65 raise Error('Route already exists.')
  /tools/test/connectivity/acts/framework/acts/libs/proc/
job.py 30 class Error(Exception):
34 super(Error, self).__init__(result)
38 class TimeoutError(Error):
52 stderr_raw: The raw bytes output from standard error
67 """String representation of standard error."""
86 stderr: The raw bytes that standard error gave.
135 Error: When the ssh connection failed to be created.
136 CommandError: Ssh worked, but the command had an error executing.
167 logging.error("Command %s with %s timeout setting timed out", command,
172 raise Error(result
    [all...]
  /tools/test/connectivity/tools/lab/utils/
job.py 30 class Error(Exception):
34 super(Error, self).__init__(result)
38 class TimeoutError(Error):
52 stderr_raw: The raw bytes output from standard error
67 """String representation of standard error."""
86 stderr: The raw bytes that standard error gave.
135 Error: When the ssh connection failed to be created.
136 CommandError: Ssh worked, but the command had an error executing.
167 logging.error("Command %s with %s timeout setting timed out", command,
172 raise Error(result
    [all...]
  /external/deqp/framework/egl/
egluDefs.hpp 38 class Error : public tcu::TestError
41 Error (deUint32 errCode, const char* errStr);
42 Error (deUint32 errCode, const char* message, const char* expr, const char* file, int line);
43 ~Error (void) throw() {}
  /art/test/458-long-to-fpu/src/
Main.java 29 throw new Error();
39 throw new Error();
  /art/test/526-checker-caller-callee-regs/src/
Main.java 21 throw new Error("Expected: " + expected + ", found: " + result);
30 if (doThrow) throw new Error();
  /art/test/530-checker-regression-reftyp-final/src/
Main.java 61 if (doThrow) throw new Error();

Completed in 765 milliseconds

1 2 3 4 56 7 8 91011>>