HomeSort by: relevance | last modified time | path
    Searched defs:failure (Results 1 - 25 of 62) sorted by relevancy

1 2 3

  /src/external/gpl3/gcc/dist/libstdc++-v3/src/c++11/
cxx11-ios_failure.cc 26 // ISO C++ 14882:2011: 27.5.3.1.1 Class ios_base::failure
49 ios_base::failure::failure(const string& __str) function in class:ios_base::failure
52 ios_base::failure::failure(const string& __str, const error_code& __ec) function in class:ios_base::failure
55 ios_base::failure::failure(const char* __str, const error_code& __ec) function in class:ios_base::failure
58 ios_base::failure::~failure()
62 ios_base::failure::what() const throw(
    [all...]
  /src/external/gpl3/gcc/dist/libstdc++-v3/src/c++98/
ios_failure.cc 26 // ISO C++ 14882:1998: 27.4.2.1.1 Class ios_base::failure
48 ios_base::failure::failure(const string& __str) throw() function in class:ios_base::failure
51 ios_base::failure::~failure() throw()
55 ios_base::failure::what() const throw()
63 // construct/destroy a gcc4-compatible ios::failure object in a buffer,
67 { ::new(buf) ios_base::failure(msg); }
71 { static_cast<ios_base::failure*>(buf)->~failure(); }
    [all...]
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/src/c++98/
ios_failure.cc 26 // ISO C++ 14882:1998: 27.4.2.1.1 Class ios_base::failure
48 ios_base::failure::failure(const string& __str) throw() function in class:ios_base::failure
51 ios_base::failure::~failure() throw()
55 ios_base::failure::what() const throw()
63 // construct/destroy a gcc4-compatible ios::failure object in a buffer,
67 { ::new(buf) ios_base::failure(msg); }
71 { static_cast<ios_base::failure*>(buf)->~failure(); }
    [all...]
  /src/external/bsd/kyua-cli/dist/integration/helpers/
expect_all_pass.cpp 55 ATF_TEST_CASE_WITHOUT_HEAD(failure); variable
56 ATF_TEST_CASE_BODY(failure)
59 fail("Forced failure");
87 ATF_ADD_TEST_CASE(tcs, failure);
expect_some_fail.cpp 54 ATF_TEST_CASE_WITHOUT_HEAD(failure); variable
55 ATF_TEST_CASE_BODY(failure)
90 ATF_ADD_TEST_CASE(tcs, failure);
  /src/external/gpl3/gdb/dist/gdb/
check-include-guards.py 46 def failure(filename: str, ndx: int, text: str): function
90 failure(filename, 0, "header should start with comment")
93 failure(filename, i, "unterminated intro comment or missing body")
99 failure(filename, i, "no header guard")
110 failure(filename, i, "premature EOF")
112 failure(filename, i, "no define of header guard")
118 failure(filename, i, "no trailing endif")
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/src/c++11/
cxx11-ios_failure.cc 26 // ISO C++ 14882:2011: 27.5.3.1.1 Class ios_base::failure
96 ios_base::failure::failure(const string& __str) function in class:ios_base::failure
99 ios_base::failure::failure(const string& __str, const error_code& __ec) function in class:ios_base::failure
102 ios_base::failure::failure(const char* __str, const error_code& __ec) function in class:ios_base::failure
105 ios_base::failure::~failure()
109 ios_base::failure::what() const throw(
    [all...]
  /src/external/bsd/ppp/dist/pppd/
utils_utest.c 104 int failure = 0; local
118 failure++;
123 failure++;
128 failure++;
133 failure++;
138 return failure;
crypto_ms.c 234 unsigned int failure = 0; local
237 failure += memcmp(Challenge, Output, sizeof(Challenge));
241 failure += memcmp(Challenge, Output, sizeof(Challenge));
245 failure += memcmp(Challenge, Output, sizeof(Challenge));
248 return failure == 0;
253 int failure = 0; local
262 failure++;
267 failure++;
275 return failure;
  /src/external/gpl3/gcc/dist/libgcc/config/arm/
linux-atomic-64bit.c 75 int failure; \
81 failure = __kernel_cmpxchg64 (&tmp, &tmp2, ptr); \
82 } while (failure != 0); \
104 int failure; \
110 failure = __kernel_cmpxchg64 (&tmp, &tmp2, ptr); \
111 } while (failure != 0); \
127 int failure; local
137 failure = __kernel_cmpxchg64 (&actual_oldval, &newval, ptr);
139 if (__builtin_expect (!failure, 1))
150 int failure = __kernel_cmpxchg64 (&oldval, &newval, ptr) local
157 int failure; local
    [all...]
linux-atomic.c 106 int failure, tmp; \
110 failure = __kernel_cmpxchg (tmp, PFX_OP (tmp INF_OP val), ptr); \
111 } while (failure != 0); \
135 int failure; \
145 failure = __kernel_cmpxchg (oldval, newval, wordptr); \
146 } while (failure != 0); \
169 int tmp, failure; \
173 failure = __kernel_cmpxchg (tmp, PFX_OP (tmp INF_OP val), ptr); \
174 } while (failure != 0); \
257 int failure = __kernel_cmpxchg (oldval, newval, ptr) local
283 int failure, oldval; local
    [all...]
  /src/external/gpl3/gcc.old/dist/libgcc/config/arm/
linux-atomic-64bit.c 75 int failure; \
81 failure = __kernel_cmpxchg64 (&tmp, &tmp2, ptr); \
82 } while (failure != 0); \
104 int failure; \
110 failure = __kernel_cmpxchg64 (&tmp, &tmp2, ptr); \
111 } while (failure != 0); \
127 int failure; local
137 failure = __kernel_cmpxchg64 (&actual_oldval, &newval, ptr);
139 if (__builtin_expect (!failure, 1))
150 int failure = __kernel_cmpxchg64 (&oldval, &newval, ptr) local
157 int failure; local
    [all...]
linux-atomic.c 106 int failure, tmp; \
110 failure = __kernel_cmpxchg (tmp, PFX_OP (tmp INF_OP val), ptr); \
111 } while (failure != 0); \
135 int failure; \
145 failure = __kernel_cmpxchg (oldval, newval, wordptr); \
146 } while (failure != 0); \
169 int tmp, failure; \
173 failure = __kernel_cmpxchg (tmp, PFX_OP (tmp INF_OP val), ptr); \
174 } while (failure != 0); \
257 int failure = __kernel_cmpxchg (oldval, newval, ptr) local
283 int failure, oldval; local
    [all...]
  /src/crypto/external/apache2/openssl/dist/crypto/cmp/
cmp_status.c 148 return NULL; /* illegal failure number */
172 int failure; local
202 for (failure = 0; failure <= OSSL_CMP_PKIFAILUREINFO_MAX; failure++) {
203 if ((fail_info & (1 << failure)) != 0) {
204 failure_string = CMP_PKIFAILUREINFO_to_string(failure);
217 printed_chars = BIO_snprintf(write_ptr, bufsize, "; <no failure info>");
282 int failure; local
301 for (failure = 0; failure <= OSSL_CMP_PKIFAILUREINFO_MAX; failure++)
    [all...]
  /src/crypto/external/bsd/openssh/dist/
ttymodes.c 325 int r, failure = 0; local
344 failure = -1;
357 if (failure != -1 &&
365 if (failure != -1 &&
419 if (failure == -1)
  /src/crypto/external/bsd/openssl/dist/crypto/cmp/
cmp_status.c 148 return NULL; /* illegal failure number */
173 int failure; local
203 for (failure = 0; failure <= OSSL_CMP_PKIFAILUREINFO_MAX; failure++) {
204 if ((fail_info & (1 << failure)) != 0) {
205 failure_string = CMP_PKIFAILUREINFO_to_string(failure);
218 printed_chars = BIO_snprintf(write_ptr, bufsize, "; <no failure info>");
283 int failure; local
302 for (failure = 0; failure <= OSSL_CMP_PKIFAILUREINFO_MAX; failure++)
    [all...]
  /src/external/gpl3/gcc/dist/libgcc/config/csky/
linux-atomic.c 67 int failure, tmp; \
72 failure = __kernel_cmpxchg (tmp, PFX_OP (tmp INF_OP val), ptr); \
74 while (failure != 0); \
98 int failure; \
109 failure = __kernel_cmpxchg (oldval, newval, wordptr); \
111 while (failure != 0); \
134 int tmp, failure; \
139 failure = __kernel_cmpxchg (tmp, PFX_OP tmp INF_OP val, ptr); \
141 while (failure != 0); \
223 int failure = __kernel_cmpxchg (oldval, newval, ptr) local
249 int failure, oldval; local
    [all...]
  /src/external/gpl3/gcc/dist/libgcc/config/nds32/
linux-atomic.c 65 int failure, tmp; \
69 failure = __kernel_cmpxchg (tmp, PFX_OP (tmp INF_OP val), ptr); \
70 } while (failure != 0); \
94 int failure; \
104 failure = __kernel_cmpxchg (oldval, newval, wordptr); \
105 } while (failure != 0); \
129 int tmp, failure; \
133 failure = __kernel_cmpxchg (tmp, PFX_OP (tmp INF_OP val), ptr); \
134 } while (failure != 0); \
216 int failure = __kernel_cmpxchg (oldval, newval, ptr) local
236 int failure, oldval; local
    [all...]
  /src/external/gpl3/gcc/dist/libgcc/config/nios2/
linux-atomic.c 65 int failure, tmp; \
69 failure = __kernel_cmpxchg (tmp, PFX_OP (tmp INF_OP val), ptr); \
70 } while (failure != 0); \
94 int failure; \
104 failure = __kernel_cmpxchg (oldval, newval, wordptr); \
105 } while (failure != 0); \
128 int tmp, failure; \
132 failure = __kernel_cmpxchg (tmp, PFX_OP (tmp INF_OP val), ptr); \
133 } while (failure != 0); \
215 int failure = __kernel_cmpxchg (oldval, newval, ptr) local
235 int failure, oldval; local
    [all...]
  /src/external/gpl3/gcc.old/dist/libgcc/config/csky/
linux-atomic.c 67 int failure, tmp; \
72 failure = __kernel_cmpxchg (tmp, PFX_OP (tmp INF_OP val), ptr); \
74 while (failure != 0); \
98 int failure; \
109 failure = __kernel_cmpxchg (oldval, newval, wordptr); \
111 while (failure != 0); \
134 int tmp, failure; \
139 failure = __kernel_cmpxchg (tmp, PFX_OP tmp INF_OP val, ptr); \
141 while (failure != 0); \
223 int failure = __kernel_cmpxchg (oldval, newval, ptr) local
249 int failure, oldval; local
    [all...]
  /src/external/gpl3/gcc.old/dist/libgcc/config/nds32/
linux-atomic.c 65 int failure, tmp; \
69 failure = __kernel_cmpxchg (tmp, PFX_OP (tmp INF_OP val), ptr); \
70 } while (failure != 0); \
94 int failure; \
104 failure = __kernel_cmpxchg (oldval, newval, wordptr); \
105 } while (failure != 0); \
129 int tmp, failure; \
133 failure = __kernel_cmpxchg (tmp, PFX_OP (tmp INF_OP val), ptr); \
134 } while (failure != 0); \
216 int failure = __kernel_cmpxchg (oldval, newval, ptr) local
236 int failure, oldval; local
    [all...]
  /src/external/gpl3/gcc.old/dist/libgcc/config/nios2/
linux-atomic.c 65 int failure, tmp; \
69 failure = __kernel_cmpxchg (tmp, PFX_OP (tmp INF_OP val), ptr); \
70 } while (failure != 0); \
94 int failure; \
104 failure = __kernel_cmpxchg (oldval, newval, wordptr); \
105 } while (failure != 0); \
128 int tmp, failure; \
132 failure = __kernel_cmpxchg (tmp, PFX_OP (tmp INF_OP val), ptr); \
133 } while (failure != 0); \
215 int failure = __kernel_cmpxchg (oldval, newval, ptr) local
235 int failure, oldval; local
    [all...]
  /src/external/bsd/unbound/dist/pythonmod/examples/
avahi-resolver.py 234 elif name == 'Failure': o.failure(*args)
276 def failure(self, error): member in class:RecordBrowser
277 self.dbg('Got signal Failure')
  /src/external/gpl3/gcc/dist/libgcc/config/pa/
linux-atomic.c 154 long failure; \
159 failure = __kernel_cmpxchg2 (ptr, &tmp, &newval, INDEX); \
160 } while (failure != 0); \
191 long failure; \
196 failure = __kernel_cmpxchg2 (ptr, &tmp, &newval, INDEX); \
197 } while (failure != 0); \
228 long failure; \
232 failure = __kernel_cmpxchg (ptr, tmp, PFX_OP (tmp INF_OP val)); \
233 } while (failure != 0); \
250 long failure; \
328 long failure = __kernel_cmpxchg (ptr, oldval, newval); local
354 long failure; local
385 long failure; local
    [all...]
  /src/external/gpl3/gcc.old/dist/libgcc/config/pa/
linux-atomic.c 123 long failure; \
128 failure = __kernel_cmpxchg2 (ptr, &tmp, &newval, INDEX); \
129 } while (failure != 0); \
160 long failure; \
165 failure = __kernel_cmpxchg2 (ptr, &tmp, &newval, INDEX); \
166 } while (failure != 0); \
197 long failure; \
202 failure = __kernel_cmpxchg (ptr, tmp, PFX_OP (tmp INF_OP val)); \
203 } while (failure != 0); \
220 long failure; \
301 long failure = __kernel_cmpxchg (ptr, oldval, newval); local
328 long failure; local
360 long failure; local
    [all...]

Completed in 37 milliseconds

1 2 3