Home
last modified time | relevance | path

Searched refs:except (Results 1 – 25 of 2622) sorted by relevance

12345678910>>...105

/external/libdaemon/libdaemon/
Ddfork.c597 int daemon_unblock_sigs(int except, ...) { in daemon_unblock_sigs() argument
603 va_start(ap, except); in daemon_unblock_sigs()
605 if (except >= 1) in daemon_unblock_sigs()
614 va_start(ap, except); in daemon_unblock_sigs()
617 if (except >= 1) { in daemon_unblock_sigs()
619 p[i++] = except; in daemon_unblock_sigs()
637 int daemon_unblock_sigsv(const int except[]) { in daemon_unblock_sigsv() argument
644 for (i = 0; except[i] > 0; i++) in daemon_unblock_sigsv()
645 if (sigaddset(&ss, except[i]) < 0) in daemon_unblock_sigsv()
651 int daemon_reset_sigs(int except, ...) { in daemon_reset_sigs() argument
[all …]
Ddfork.h135 int daemon_unblock_sigs(int except, ...);
141 int daemon_unblock_sigsv(const int except[]);
153 int daemon_reset_sigs(int except, ...);
159 int daemon_reset_sigsv(const int except[]);
/external/ltp/testcases/kernel/mem/mtest06/
Dshmat1.c115 unsigned long except; /* exception type. */ in sig_handler() local
127 except = scp->trapno; in sig_handler()
131 switch (except) { in sig_handler()
134 "Exception - invalid TSS, exception #[%ld]\n", except); in sig_handler()
139 except); in sig_handler()
144 except); in sig_handler()
149 except); in sig_handler()
153 "Exception - page fault, exception #[%ld]\n", except); in sig_handler()
159 except); in sig_handler()
/external/python/cpython2/Doc/tutorial/
Derrors.rst92 ... except ValueError:
99 :keyword:`except` keywords) is executed.
101 * If no exception occurs, the *except clause* is skipped and execution of the
106 :keyword:`except` keyword, the except clause is executed, and then execution
109 * If an exception occurs which does not match the exception named in the except
114 A :keyword:`try` statement may have more than one except clause, to specify
117 in other handlers of the same :keyword:`try` statement. An except clause may
120 ... except (RuntimeError, TypeError, NameError):
124 ``except ValueError, e:`` was the syntax used for what is normally
125 written as ``except ValueError as e:`` in modern Python (described
[all …]
/external/curl/include/curl/
Dcurlbuild.h.in61 #error "CURL_SIZEOF_LONG shall not be defined except in curlbuild.h"
66 #error "CURL_TYPEOF_CURL_SOCKLEN_T shall not be defined except in curlbuild.h"
71 #error "CURL_SIZEOF_CURL_SOCKLEN_T shall not be defined except in curlbuild.h"
76 #error "CURL_TYPEOF_CURL_OFF_T shall not be defined except in curlbuild.h"
81 #error "CURL_FORMAT_CURL_OFF_T shall not be defined except in curlbuild.h"
86 #error "CURL_FORMAT_CURL_OFF_TU shall not be defined except in curlbuild.h"
91 #error "CURL_FORMAT_OFF_T shall not be defined except in curlbuild.h"
96 #error "CURL_SIZEOF_CURL_OFF_T shall not be defined except in curlbuild.h"
101 #error "CURL_SUFFIX_CURL_OFF_T shall not be defined except in curlbuild.h"
106 #error "CURL_SUFFIX_CURL_OFF_TU shall not be defined except in curlbuild.h"
Dcurlbuild.h.cmake61 #error "CURL_SIZEOF_LONG shall not be defined except in curlbuild.h"
66 #error "CURL_TYPEOF_CURL_SOCKLEN_T shall not be defined except in curlbuild.h"
71 #error "CURL_SIZEOF_CURL_SOCKLEN_T shall not be defined except in curlbuild.h"
76 #error "CURL_TYPEOF_CURL_OFF_T shall not be defined except in curlbuild.h"
81 #error "CURL_FORMAT_CURL_OFF_T shall not be defined except in curlbuild.h"
86 #error "CURL_FORMAT_CURL_OFF_TU shall not be defined except in curlbuild.h"
91 #error "CURL_FORMAT_OFF_T shall not be defined except in curlbuild.h"
96 #error "CURL_SIZEOF_CURL_OFF_T shall not be defined except in curlbuild.h"
101 #error "CURL_SUFFIX_CURL_OFF_T shall not be defined except in curlbuild.h"
106 #error "CURL_SUFFIX_CURL_OFF_TU shall not be defined except in curlbuild.h"
/external/libxml2/test/relaxng/
DtutorA.rng117 <element name="except">
236 <ref name="except-name-class"/>
240 <ref name="except-name-class"/>
249 <define name="except-name-class">
253 <element name="except">
288 <except>
291 </except>
301 <except>
303 </except>
Dtutor11_2.rng6 <except>
9 </except>
D565219.rng5 <except>
8 </except>
Dtutor11_4.rng5 <except>
7 </except>
/external/clang/test/CodeGenCXX/
Dwindows-itanium-exceptions.cpp5 void except() { in except() function
10 try { except(); } catch (...) { } in attempt()
/external/swiftshader/third_party/LLVM/lib/Target/MBlaze/
DMBlazeSchedule3.td32 // pipeline stages except the execute stage, which takes three cycles. The
45 // stages except the execute stage, which takes 34 cycles. The two
59 // except the execute stage, which takes two cycles. The two source operands
102 // except the memory access stage, which takes two cycles. The source
113 // the pipeline stages except the execute stage, which takes six cycles. The
126 // each of the pipeline stages except the execute stage, which takes 30
139 // to execute in each of the pipeline stages except the execute stage,
151 // to execute in each of the pipeline stages except the execute stage,
163 // each of the pipeline stages except the execute stage, which takes 29
175 // in each of the pipeline stages except the execute stage, which takes three
[all …]
/external/swiftshader/third_party/LLVM/lib/MC/MCParser/
DCOFFAsmParser.cpp121 bool ParseAtUnwindOrAtExcept(bool &unwind, bool &except);
261 bool unwind = false, except = false; in ParseSEHDirectiveHandler() local
262 if (ParseAtUnwindOrAtExcept(unwind, except)) in ParseSEHDirectiveHandler()
266 if (ParseAtUnwindOrAtExcept(unwind, except)) in ParseSEHDirectiveHandler()
275 getStreamer().EmitWin64EHHandler(handler, unwind, except); in ParseSEHDirectiveHandler()
418 bool COFFAsmParser::ParseAtUnwindOrAtExcept(bool &unwind, bool &except) { in ParseAtUnwindOrAtExcept() argument
429 except = true; in ParseAtUnwindOrAtExcept()
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
Ddfa.rb303 except = NoViableAlternative.new( description, @decision_number, state, input )
304 error( except )
305 raise( except )
308 def error( except ) argument
/external/selinux/libsemanage/src/
Dexception.sh1 function except() { function
17 for i in `awk '/extern int/ { print $6 }' temp.aux`; do except $i ; done
/external/selinux/libselinux/src/
Dexception.sh1 function except() { function
23 for i in `awk '/<stdin>.*extern int/ { print $6 }' temp.aux`; do except $i ; done
/external/python/cpython2/Doc/howto/
Ddoanddont.rst143 except:
146 Python has the ``except:`` clause, which catches all exceptions. Since *every*
147 error in Python raises an exception, using ``except:`` can make many
155 except:
158 The second line triggers a :exc:`NameError`, which is caught by the except
167 except IOError:
173 .. index:: bare except, except; bare
175 Because ``except:`` catches *all* exceptions, including :exc:`SystemExit`,
177 should not normally be caught by user code), using a bare ``except:`` is almost
183 use a bare ``except:`` and manually re-raise the exceptions you don't want
[all …]
/external/squashfs-tools/RELEASE-READMEs/
DREADME-3.327 Similar to existing exclude files except with wildcards. Exclude
46 except those with "data" in the name.
73 except those with "data" in the name.
78 card pattern matching, except patterns are considered to be regular
117 Enabled by default. Similar to existing extract files except with
136 except those with "data" in the name.
141 card pattern matching, except patterns are considered to be regular
/external/guava/guava-testlib/src/com/google/common/util/concurrent/testing/
DAbstractCheckedFutureTest.java41 Exception except, CountDownLatch waitOn); in createCheckedFuture() argument
60 Exception except, CountDownLatch waitOn) { in createListenableFuture() argument
61 return createCheckedFuture(value, except, waitOn); in createListenableFuture()
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
DRBNFParseTest.java78 boolean except = tests == exceptrules; in TestParse()
91 if (!except) { in TestParse()
97 if (except && !caughtException) { in TestParse()
/external/autotest/server/control_segments/
Dcleanup10 except ImportError:
36 except error.AutoservSshPingHostError:
45 except Exception:
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
DRBNFParseTest.java79 boolean except = tests == exceptrules; in TestParse()
92 if (!except) { in TestParse()
98 if (except && !caughtException) { in TestParse()
/external/llvm/test/MC/AsmParser/
Ddirective_seh.s26 .seh_handler __C_specific_handler, @except
35 # CHECK: .seh_handler __C_specific_handler, @except
/external/swiftshader/third_party/LLVM/test/MC/AsmParser/
Ddirective_seh.s11 # CHECK: .seh_handler __C_specific_handler, @except
37 .seh_handler __C_specific_handler, @except
/external/python/cpython2/Doc/reference/
Dcompound_stmts.rst212 keyword: except
221 : ("except" [`expression` [("as" | ",") `identifier`]] ":" `suite`)+
228 In previous versions of Python, :keyword:`try`...\ :keyword:`except`...\
229 :keyword:`finally` did not work. :keyword:`try`...\ :keyword:`except` had to be
232 The :keyword:`except` clause(s) specify one or more exception handlers. When no
235 handler is started. This search inspects the except clauses in turn until one
236 is found that matches the exception. An expression-less except clause, if
237 present, must be last; it matches any exception. For an except clause with an
243 If no except clause matches the exception, the search for an exception handler
246 If the evaluation of an expression in the header of an except clause raises an
[all …]

12345678910>>...105