Searched defs:catch (Results 1 - 11 of 11) sorted by relevance

/external/toybox/toys/other/
H A Dprintenv.c30 int catch = 0, len = *var ? strlen(*var) : 0; local
39 catch++;
41 if (*var && !catch) toys.exitval = 1;
H A Ddos2unix.c37 int outfd = 1, catch = 0; local
52 if (catch) {
54 catch = 0;
58 if (x == '\r') catch++;
63 if (catch) xwrite(outfd, "\r", 1);
/external/javasqlite/src/main/java/SQLite/JDBC2z/
H A DJDBCResultSet.java113 } catch (SQLException ee) {
122 } catch (SQLException e) { method
249 } catch (java.lang.Exception e) {
293 } catch (java.lang.Exception e) {
320 } catch (java.lang.Exception ee) {
326 } catch (java.lang.Exception ee) {
330 } catch (java.lang.Exception e) {
369 } catch (java.lang.Exception ee) {
375 } catch (java.lang.Exception ee) {
379 } catch (jav
[all...]
/external/toybox/lib/
H A Ddirtree.c17 int dirtree_notdotdot(struct dirtree *catch) argument
20 return notdotdot(catch->name) ? DIRTREE_SAVE|DIRTREE_RECURSE : 0;
H A Dlinestack.c8 struct linestack *catch = *lls; local
11 if (pos > catch->len) error_exit("linestack_addstack past end.");
14 if (catch->len+throw->len >= catch->max) {
16 catch->max = ((catch->len+throw->len)|63)+1;
17 *lls = xmalloc(sizeof(struct linestack)+catch->max*sizeof(struct ptr_len));
18 memcpy(*lls, catch, sizeof(struct linestack)+pos*sizeof(struct ptr_len));
22 if (pos != catch->len)
23 memmove((*lls)->idx+pos+throw->len, catch
[all...]
H A Dargs.c380 struct opts *catch; local
397 catch = NULL;
428 catch = lo->opt;
440 gotflag(&gof, catch);
456 for (catch = gof.opts; catch; catch = catch->next)
457 if (*gof.arg == catch->c)
458 if (!((catch
[all...]
/external/toybox/scripts/
H A Dconfig2help.c248 struct symbol *throw = 0, *catch; local
253 for (catch = sym; catch; catch = catch->next) {
254 if (catch->enabled != 1) continue;
255 if (catch->help && (that = keyword("usage:", catch->help->data))) {
261 // text out of throw into catch, copying from this to that
264 catch
[all...]
/external/toybox/toys/posix/
H A Dcp.c148 char *catch = try->parent ? try->name : TT.destname, *err = "%s"; local
165 && (catch = TT.destname))
166 || (!fstatat(cfd, catch, &cst, 0) && cst.st_dev == try->st.st_dev
169 error_msg("'%s' is '%s'", catch, err = dirtree_path(try, 0));
177 if (!faccessat(cfd, catch, F_OK, 0) && !S_ISDIR(cst.st_mode)) {
184 } else if ((flags & FLAG_F) && unlinkat(cfd, catch, 0)) {
185 error_msg("unlink '%s'", catch);
214 catch = try->name;
225 if (!mkdirat(cfd, catch, try->st.st_mode | 0200) || errno == EEXIST)
226 if (-1 != (try->extra = openat(cfd, catch, O_NOFOLLO
[all...]
/external/clang/test/Preprocessor/
H A Dcxx_oper_keyword_ms_compat.cpp33 #define catch macro
118 catch
/external/google-breakpad/src/client/mac/handler/
H A Dexception_handler.cc45 // This file uses C++ try/catch (but shouldn't). Duplicate the macros from
48 // and catch macros first in case libstdc++ is in use and has already provided
52 #undef catch macro
53 #define catch(X) if (false) macro
117 // Only catch these three exceptions. The other ones are nebulously defined
663 catch (std::bad_alloc) {
/external/mdnsresponder/mDNSShared/
H A DDebugServices.c1633 CaseErrorString( -1, "catch-all unknown error" );
2767 catch( ... ) function

Completed in 342 milliseconds