| /PHP_5_4/ext/ereg/regex/ |
| H A D | main.c | 13 int status = 0; variable 75 exit(status); 83 exit(status); 89 exit(status); 101 exit(status); 119 exit(status); 171 status = 1; 178 status = 1; 184 status = 1; 191 status [all...] |
| /PHP_5_4/ext/standard/ |
| H A D | dns_win32.c | 50 DNS_STATUS status; /* Return value of DnsQuery_A() function */ local 57 status = DnsQuery_A(hostname, DNS_TYPE_MX, DNS_QUERY_STANDARD, NULL, &pResult, NULL); 59 if (status) { 99 DNS_STATUS status; /* Return value of DnsQuery_A() function */ local 130 status = DnsQuery_A(hostname, type, DNS_QUERY_STANDARD, NULL, &pResult, NULL); 132 if (status) { 399 DNS_STATUS status; /* Return value of DnsQuery_A() function */ local 455 status = DnsQuery_A(hostname, type_to_fetch, DNS_QUERY_STANDARD, NULL, &pResult, NULL); 457 if (status) { 458 if (status [all...] |
| /PHP_5_4/sapi/fpm/fpm/ |
| H A D | fpm_children.c | 179 int status; local 183 while ( (pid = waitpid(-1, &status, WNOHANG | WUNTRACED)) > 0) { 190 if (WIFEXITED(status)) { 192 snprintf(buf, sizeof(buf), "with code %d", WEXITSTATUS(status)); 201 if (WEXITSTATUS(status) != FPM_EXIT_OK) { 205 } else if (WIFSIGNALED(status)) { 206 const char *signame = fpm_signal_names[WTERMSIG(status)]; 207 const char *have_core = WCOREDUMP(status) ? " - core dumped" : ""; 213 snprintf(buf, sizeof(buf), "on signal %d (%s%s)", WTERMSIG(status), signame, have_core); 218 if (child && child->idle_kill && WTERMSIG(status) [all...] |
| /PHP_5_4/ext/intl/collator/ |
| H A D | collator_convert.c | 45 UErrorCode* status ) 65 intl_convert_utf8_to_utf16( &new_val, &new_val_len, old_val, old_val_len, status ); 66 if( U_FAILURE( *status ) ) 89 UErrorCode* status ) 110 (UChar*)old_val, UCHARS(old_val_len), status ); 111 if( U_FAILURE( *status ) ) 134 void collator_convert_hash_from_utf8_to_utf16( HashTable* hash, UErrorCode* status ) 146 hash, hashKeyType, hashKey, hashIndex, status ); 147 if( U_FAILURE( *status ) ) 159 void collator_convert_hash_from_utf16_to_utf8( HashTable* hash, UErrorCode* status ) 195 UErrorCode status = U_ZERO_ERROR; local 223 UErrorCode status = U_ZERO_ERROR; local 247 UErrorCode status = U_ZERO_ERROR; local [all...] |
| /PHP_5_4/ext/intl/grapheme/ |
| H A D | grapheme_string.c | 62 UErrorCode status; local 78 status = U_ZERO_ERROR; 79 intl_convert_utf8_to_utf16(&ustring, &ustring_len, (char*) string, string_len, &status ); 81 if ( U_FAILURE( status ) ) { 83 intl_error_set_code( NULL, status TSRMLS_CC ); 407 UErrorCode status; local 445 status = U_ZERO_ERROR; 446 intl_convert_utf8_to_utf16(&ustr, &ustr_len, (char *)str, str_len, &status); 448 if ( U_FAILURE( status ) ) { 450 intl_error_set_code( NULL, status TSRMLS_C 802 UErrorCode status; local [all...] |
| H A D | grapheme_util.c | 156 UErrorCode status; local 164 status = U_ZERO_ERROR; 165 intl_convert_utf8_to_utf16(&uhaystack, &uhaystack_len, (char *) haystack, haystack_len, &status ); 167 if ( U_FAILURE( status ) ) { 169 intl_error_set_code( NULL, status TSRMLS_CC ); 180 grapheme_intl_case_fold(&uhaystack, &uhaystack, &uhaystack_len, &status ); 185 status = U_ZERO_ERROR; 186 bi = grapheme_get_break_iterator(u_break_iterator_buffer, &status TSRMLS_CC ); 201 status = U_ZERO_ERROR; 202 intl_convert_utf8_to_utf16(&uneedle, &uneedle_len, (char *) needle, needle_len, &status ); 293 UErrorCode status; local 400 UErrorCode status = U_ZERO_ERROR; local 440 UErrorCode status = U_ZERO_ERROR; local 464 UErrorCode status; local 525 UErrorCode status; local [all...] |
| /PHP_5_4/ext/intl/idn/ |
| H A D | idn.c | 139 UErrorCode status = U_ZERO_ERROR; local 147 uts46 = uidna_openUTS46(option, &status); 148 if (php_intl_idn_check_status(status, "failed to open UIDNA instance", 156 buffer, buffer_capac, &info, &status); 159 buffer, buffer_capac, &info, &status); 161 if (php_intl_idn_check_status(status, "failed to convert name", 209 UErrorCode status; local 216 status = U_ZERO_ERROR; 217 intl_convert_utf8_to_utf16(&ustring, &ustring_len, domain, domain_len, &status); 219 if (U_FAILURE(status)) { [all...] |
| /PHP_5_4/ext/intl/msgformat/ |
| H A D | msgformat_helpers.cpp | 58 U_CFUNC void umsg_format_helper(UMessageFormat *fmt, int arg_count, zval **args, UChar **formatted, int *formatted_len, UErrorCode *status TSRMLS_DC) 101 intl_convert_utf8_to_utf16(&stringVal, &stringLen, Z_STRVAL_P(args[i]), Z_STRLEN_P(args[i]), status); 102 if(U_FAILURE(*status)){ 112 *status = U_UNSUPPORTED_ERROR; 122 ((const MessageFormat*)fmt)->format(fargs, fmt_count, resultStr, fieldPosition, *status); 126 if(U_FAILURE(*status)){ 132 resultStr.extract(*formatted, *formatted_len+1, *status); 137 U_CFUNC void umsg_parse_helper(UMessageFormat *fmt, int *count, zval ***args, UChar *source, int source_len, UErrorCode *status) argument 140 Formattable *fargs = ((const MessageFormat*)fmt)->parse(srcString, *count, *status); 142 if(U_FAILURE(*status)) { [all...] |
| /PHP_5_4/ext/intl/normalizer/ |
| H A D | normalizer_normalize.c | 43 UErrorCode status = U_ZERO_ERROR; local 90 intl_convert_utf8_to_utf16(&uinput, &uinput_len, input, input_len, &status ); 92 if( U_FAILURE( status ) ) 95 intl_error_set_code( NULL, status TSRMLS_CC ); 111 size_needed = unorm_normalize( uinput, uinput_len, form, (int32_t) 0 /* options */, uret_buf, uret_len, &status); 117 if( U_FAILURE(status) && status != U_BUFFER_OVERFLOW_ERROR && status != U_STRING_NOT_TERMINATED_WARNING ) { 131 status = U_ZERO_ERROR; 134 size_needed = unorm_normalize( uinput, uinput_len, form, (int32_t) 0 /* options */, uret_buf, uret_len, &status); 180 UErrorCode status = U_ZERO_ERROR; local [all...] |
| /PHP_5_4/ext/intl/transliterator/ |
| H A D | transliterator.c | 60 UErrorCode status; local 88 intl_convert_utf16_to_utf8( &buf, &u8len, pe->preContext, -1, &status ); 89 if( U_FAILURE( status ) ) 107 intl_convert_utf16_to_utf8( &buf, &u8len, pe->postContext, -1, &status ); 108 if( U_FAILURE( status ) )
|
| H A D | transliterator_methods.c | 247 UErrorCode status = U_ZERO_ERROR; local 261 en = utrans_openIDs( &status ); 262 INTL_CHECK_STATUS( status, 266 while( (elem = uenum_unext( en, &elem_len, &status )) ) 271 intl_convert_utf16_to_utf8( &el_char, &el_len, elem, elem_len, &status ); 273 if( U_FAILURE( status ) ) 285 intl_error_set_code( NULL, status TSRMLS_CC ); 286 if( U_FAILURE( status ) )
|
| /PHP_5_4/ext/mbstring/libmbfl/filters/ |
| H A D | mbfilter_base64.c | 88 n = (filter->status & 0xff); 90 filter->status++; 93 filter->status++; 96 filter->status &= ~0xff; 97 if ((filter->status & MBFL_BASE64_STS_MIME_HEADER) == 0) { 98 n = (filter->status & 0xff00) >> 8; 102 filter->status &= ~0xff00; 104 filter->status += 0x400; 118 int status, cache, len; local 120 status 198 int status, cache; local [all...] |
| H A D | mbfilter_htmlent.c | 147 filter->status = 0; 165 filter->status = 0; 171 filter->status = 0; 185 if (!filter->status) { 187 filter->status = 1; 195 if (filter->status > 2 && (buffer[2] == 'x' || buffer[2] == 'X')) { 196 if (filter->status > 3) { 198 for (pos=3; pos<filter->status; pos++) { 217 if (filter->status > 2) { 218 for (pos=2; pos<filter->status; po 290 int status, pos = 0; local [all...] |
| H A D | mbfilter_qprint.c | 76 switch (filter->status & 0xff) { 79 filter->status++; 84 n = (filter->status & 0xff00) >> 8; 88 filter->status &= ~0xff00; 92 if ((filter->status & MBFL_QPRINT_STS_MIME_HEADER) == 0) { 96 filter->status &= ~0xff00; 103 if ((filter->status & MBFL_QPRINT_STS_MIME_HEADER) == 0 && n >= 72) { /* soft line feed */ 107 filter->status &= ~0xff00; 111 || ((filter->status & MBFL_QPRINT_STS_MIME_HEADER) != 0 && 129 if ((filter->status 226 int status, cache; local [all...] |
| H A D | mbfilter_utf7.c | 99 if (filter->status != 0) { /* Modified Base64 */ 113 if (filter->status == 1) { /* "+-" -> "+" */ 124 filter->status = 0; 129 switch (filter->status) { 133 filter->status = 1; 147 filter->status = 3; 151 filter->status = 4; 156 filter->status = 5; 179 filter->status = 6; 183 filter->status 378 int status, cache; local [all...] |
| H A D | mbfilter_utf7imap.c | 72 if (filter->status != 0) { /* Modified Base64 */ 86 if (filter->status == 1) { /* "&-" -> "&" */ 97 filter->status = 0; 102 switch (filter->status) { 106 filter->status++; 120 filter->status = 3; 124 filter->status = 4; 129 filter->status = 5; 152 filter->status = 6; 156 filter->status 339 int status, cache; local [all...] |
| H A D | mbfilter_utf8.c | 104 if (filter->status != 0) { 107 filter->status = 0; 114 int status = filter->status & 0xff; local 115 switch (status) { 119 filter->status = 0; 122 if ((status == 0x10 && s >= 0x80) || 123 (status == 0x21 && s >= 0x800 && (s < 0xd800 || s > 0xdfff)) || 124 (status == 0x32 && s >= 0x10000 && s < 0x110000)) { 138 filter->status [all...] |
| H A D | mbfilter_utf8_mobile.c | 198 filter->status = 0; 200 int status = filter->status & 0xff; local 201 switch (status) { 205 filter->status = 0; 208 if ((status == 0x10 && s >= 0x80) || 209 (status == 0x21 && s >= 0x800 && (s < 0xd800 || s > 0xdfff)) || 210 (status == 0x32 && s >= 0x10000 && s < 0x110000)) { 242 filter->status++; 250 filter->status [all...] |
| /PHP_5_4/ext/mbstring/libmbfl/mbfl/ |
| H A D | mbfl_convert.h | 49 int status; member in struct:_mbfl_convert_filter
|
| H A D | mbfl_ident.h | 46 int status; member in struct:_mbfl_identify_filter
|
| /PHP_5_4/ext/bz2/ |
| H A D | bz2_filter.c | 45 enum strm_status status; member in struct:_php_bz2_filter_data 79 int status; local 96 if (data->status == PHP_BZ2_UNITIALIZED) { 97 status = BZ2_bzDecompressInit(streamp, 0, data->small_footprint); 99 if (BZ_OK != status) { 103 data->status = PHP_BZ2_RUNNING; 106 if (data->status != PHP_BZ2_RUNNING) { 118 status = BZ2_bzDecompress(&(data->strm)); 120 if (status == BZ_STREAM_END) { 123 data->status 216 int status; local 315 int status = BZ_OK; local [all...] |
| /PHP_5_4/ext/filter/ |
| H A D | callback_filter.c | 27 int status; local 39 status = call_user_function_ex(EG(function_table), NULL, option_array, &retval_ptr, 1, args, 0, NULL TSRMLS_CC); 41 if (status == SUCCESS && retval_ptr != NULL) {
|
| /PHP_5_4/ext/json/ |
| H A D | json.c | 350 int j, status; local 355 us = php_next_utf8_char((const unsigned char *)utf8, len, &pos, &status); 356 if (status != SUCCESS) { 371 us = php_next_utf8_char((const unsigned char *)utf8, len, &pos, &status); 372 if (status != SUCCESS) {
|
| /PHP_5_4/ext/pdo_pgsql/ |
| H A D | pgsql_statement.c | 122 ExecStatusType status; local 146 status = PQresultStatus(S->result); 147 if (status != PGRES_COMMAND_OK && status != PGRES_TUPLES_OK) { 148 pdo_pgsql_error_stmt(stmt, status, pdo_pgsql_sqlstate(S->result)); 171 status = PQresultStatus(S->result); 172 switch (status) { 197 pdo_pgsql_error_stmt(stmt, status, sqlstate); 216 status = PQresultStatus(S->result); 218 if (status ! 390 ExecStatusType status; local 576 ExecStatusType status; local [all...] |
| /PHP_5_4/sapi/phttpd/ |
| H A D | phttpd.c | 283 int status; local 292 status = php_doit(TSRMLS_C); 295 return status;
|