| /PHP_5_5/ext/zip/lib/ |
| H A D | zip_error.c | 45 _zip_error_clear(struct zip_error *err) 47 err->zip_err = ZIP_ER_OK; 48 err->sys_err = 0; 65 _zip_error_fini(struct zip_error *err) 67 free(err->str); 68 err->str = NULL; 75 _zip_error_get(struct zip_error *err, int *zep, int *sep) 78 *zep = err->zip_err; 80 if (zip_error_get_sys_type(err->zip_err) != ZIP_ET_NONE) 81 *sep = err 43 _zip_error_clear(struct zip_error *err) argument 61 _zip_error_fini(struct zip_error *err) argument 70 _zip_error_get(struct zip_error *err, int *zep, int *sep) argument 85 _zip_error_init(struct zip_error *err) argument 95 _zip_error_set(struct zip_error *err, int ze, int se) argument 106 _zip_error_set_from_source(struct zip_error *err, struct zip_source *src) argument [all...] |
| H A D | zip_error_strerror.c | 48 _zip_error_strerror(struct zip_error *err) 53 _zip_error_fini(err); 55 if (err->zip_err < 0 || err->zip_err >= _zip_nerr_str) { 56 sprintf(buf, "Unknown error %d", err->zip_err); 61 zs = _zip_err_str[err->zip_err]; 63 switch (_zip_err_type[err->zip_err]) { 65 ss = strerror(err->sys_err); 69 ss = zError(err->sys_err); 88 err 46 _zip_error_strerror(struct zip_error *err) argument [all...] |
| H A D | zip_source_filep.c | 202 int err; 205 err = fstat(fileno(z->f), &fst); 207 err = stat(z->fname, &fst); 209 if (err != 0) { 198 int err; local
|
| /PHP_5_5/ext/zip/ |
| H A D | zip_stream.c | 111 int err; local 144 za = zip_open(file_dirname, ZIP_CREATE, &err); 191 int err = 0; local 207 stream_za = zip_open(filename, ZIP_CREATE, &err); 254 int err; local 289 za = zip_open(file_dirname, ZIP_CREATE, &err);
|
| /PHP_5_5/pear/ |
| H A D | fetch.php | 72 $err = error_get_last(); variable 73 echo "\nError..\n", $err["message"], "\n";
|
| /PHP_5_5/sapi/isapi/stresstest/ |
| H A D | getopt.c | 20 int optchr, int err) 25 switch(err) 19 ap_optiserr(int argc, char * const *argv, int oint, const char *optstr, int optchr, int err) argument
|
| /PHP_5_5/sapi/milter/ |
| H A D | getopt.c | 19 int optchr, int err) 24 switch(err) 18 ap_php_optiserr(int argc, char * const *argv, int oint, const char *optstr, int optchr, int err) argument
|
| /PHP_5_5/scripts/dev/ |
| H A D | search_underscores.php | 30 $err = 0; variable 39 $err++; 48 $err++; 60 $err++; 79 printf("Errors: %5d (%.1f%%)\n", $err, round($err * 100 / $cnt, 1));
|
| /PHP_5_5/win32/ |
| H A D | readdir.c | 54 DWORD err = GetLastError(); local 55 if (err == ERROR_NO_MORE_FILES || err == ERROR_FILE_NOT_FOUND) {
|
| /PHP_5_5/ext/intl/breakiterator/ |
| H A D | breakiterator_class.h | 35 intl_error err; member in struct:__anon184 44 #define BREAKITER_ERROR(bio) (bio)->err 56 intl_errors_set(&bio->err, U_ILLEGAL_ARGUMENT_ERROR, "Found unconstructed BreakIterator", 0 TSRMLS_CC); \
|
| /PHP_5_5/ext/intl/calendar/ |
| H A D | calendar_class.h | 35 intl_error err; member in struct:__anon188 41 #define CALENDAR_ERROR(co) (co)->err 53 intl_errors_set(&co->err, U_ILLEGAL_ARGUMENT_ERROR, "Found unconstructed IntlCalendar", 0 TSRMLS_CC); \
|
| /PHP_5_5/ext/intl/collator/ |
| H A D | collator_class.h | 33 intl_error err; member in struct:__anon189 39 #define COLLATOR_ERROR(co) (co)->err
|
| /PHP_5_5/ext/intl/common/ |
| H A D | common_enum.h | 34 #define INTLITERATOR_ERROR(ii) (ii)->err 46 intl_errors_set(&ii->err, U_ILLEGAL_ARGUMENT_ERROR, "Found unconstructed IntlIterator", 0 TSRMLS_CC); \ 52 intl_error err; member in struct:__anon190
|
| /PHP_5_5/ext/intl/dateformat/ |
| H A D | dateformat_format.c | 63 HashTable* hash_arr, char* key_name, intl_error *err TSRMLS_DC) 69 if (U_FAILURE(err->code)) { 78 intl_errors_set(err, U_ILLEGAL_ARGUMENT_ERROR, message, 1 TSRMLS_CC); 86 intl_errors_set(err, U_ILLEGAL_ARGUMENT_ERROR, message, 1 TSRMLS_CC); 112 intl_error *err = &dfo->datef_data.error; local 115 internal_get_arr_ele(dfo, hash_arr, (elem), err TSRMLS_CC) 133 intl_errors_set(err, INTL_DATA_ERROR_CODE(dfo), "datefmt_format: "
|
| H A D | dateformat_helpers.cpp | 34 intl_error *err, 59 intl_errors_set(err, U_ILLEGAL_ARGUMENT_ERROR, msg, 1 TSRMLS_CC); 79 intl_errors_set(err, U_ILLEGAL_ARGUMENT_ERROR, msg, 1 TSRMLS_CC); 90 intl_errors_set(err, U_ILLEGAL_ARGUMENT_ERROR, msg, 1 TSRMLS_CC); 100 intl_errors_set(err, U_ILLEGAL_ARGUMENT_ERROR, msg, 1 TSRMLS_CC); 31 datefmt_process_calendar_arg(zval* calendar_zv, Locale const& locale, const char *func_name, intl_error *err, Calendar*& cal, long& cal_int_type, bool& calendar_owned TSRMLS_DC) argument
|
| /PHP_5_5/ext/intl/normalizer/ |
| H A D | normalizer_class.h | 31 intl_error err; member in struct:__anon201 35 #define NORMALIZER_ERROR(co) (co)->err
|
| /PHP_5_5/ext/intl/spoofchecker/ |
| H A D | spoofchecker_class.h | 33 intl_error err; member in struct:__anon204 39 #define SPOOFCHECKER_ERROR(co) (co)->err 63 intl_errors_set(&co->err, U_ILLEGAL_ARGUMENT_ERROR, \
|
| /PHP_5_5/ext/intl/timezone/ |
| H A D | timezone_class.h | 38 intl_error err; member in struct:__anon205 47 #define TIMEZONE_ERROR(to) (to)->err 58 intl_errors_set(&to->err, U_ILLEGAL_ARGUMENT_ERROR, "Found unconstructed IntlTimeZone", 0 TSRMLS_CC); \
|
| /PHP_5_5/ext/intl/transliterator/ |
| H A D | transliterator_class.h | 31 intl_error err; member in struct:__anon206 40 #define TRANSLITERATOR_ERROR( co ) (co)->err 52 intl_errors_set( &to->err, U_ILLEGAL_ARGUMENT_ERROR, "Found unconstructed transliterator", 0 TSRMLS_CC ); \
|
| /PHP_5_5/ext/mbstring/libmbfl/filters/ |
| H A D | mbfilter_htmlent.c | 292 int err = 0; local 302 err = e; 309 return err;
|
| /PHP_5_5/TSRM/ |
| H A D | tsrm_nw.c | 59 int ptrLen = 0, argc = 0, i = 0, envCount = 0, err = 0; local 109 err = NXFifoOpen(0, filePath, mode, 0, &pipe_handle); 110 if (err) 120 err = NXCopyEnv(env, envCount); 121 if (err) { 199 err = NXVmSpawn(&nameSpec, &envSpec, 0, &newVM); 200 if (!err) 228 int err = 0; local 235 err = fclose(stream); 237 return err; [all...] |
| /PHP_5_5/ext/dom/ |
| H A D | documentfragment.c | 128 int err; local 143 err = xmlParseBalancedChunkMemory(nodep->doc, NULL, NULL, 0, data, &lst); 144 if (err != 0) {
|
| /PHP_5_5/ext/standard/ |
| H A D | fsock.c | 43 int err; local 80 STREAM_XPORT_CLIENT | STREAM_XPORT_CONNECT, hashkey, &tv, NULL, &errstr, &err); 96 ZVAL_LONG(zerrno, err);
|
| H A D | dl.c | 147 char *err = GET_DL_ERROR(); local 148 if (err && (*err != "")) { 149 php_error_docref(NULL TSRMLS_CC, error_type, "Unable to load dynamic library '%s' - %s", libpath, err); 150 LocalFree(err);
|
| /PHP_5_5/main/ |
| H A D | getopt.c | 31 static int php_opt_error(int argc, char * const *argv, int oint, int optchr, int err, int show_err) /* {{{ */ argument 36 switch(err)
|