Home
last modified time | relevance | path

Searched refs:state (Results 1 – 25 of 154) sorted by path

1234567

/PHP-5.5/
H A DINSTALL1390 with the alpha or beta state. If no stable packages are available, you
H A DNEWS1956 modified state instead of changing itself. (Derick)
4933 - Reset error state in PDO::beginTransaction() reset error state. (Ilia)
6706 class-specific state). (Felipe)
10055 bailout state isn't restored. (Andi)
H A DREADME.STREAMS138 #define PHP_STREAM_CRITICAL 3 /* an error occurred; origstream is in an unknown state; you should …
222 state in the stream.
228 itself, which holds some state information (and possibly a buffer) and a
313 For structured state you might have this:
320 struct my_state * state = pemalloc(sizeof(struct my_state), persistent);
322 /* initialize the connection, and run a query, using the fields in state to
325 state->result = mysql_use_result(&state->conn);
328 stream = php_stream_alloc(&my_ops, state, 0, persistent, "r");
330 /* now stream->abstract == state */
340 struct my_state * state = (struct my_state*)stream->abstract;
[all …]
H A DUPGRADING221 inconsistent state which has been observed to result in crashes and may
/PHP-5.5/TSRM/
H A Dtsrm_virtual_cwd.c146 #define IS_DIR_OK(state) (php_is_dir_ok(state) == 0) argument
495 cwd_state *state; in virtual_getcwd_ex() local
497 state = &CWDG(cwd); in virtual_getcwd_ex()
514 if (state->cwd_length == 2 && state->cwd[state->cwd_length-1] == ':') { in virtual_getcwd_ex()
1195 } else if (IS_UNC_PATH(state->cwd, state->cwd_length)) { in virtual_file_ex()
1319 tmp = realloc(state->cwd, state->cwd_length+1); in virtual_file_ex()
1328 memcpy(state->cwd, resolved_path, state->cwd_length+1); in virtual_file_ex()
1330 CWD_STATE_FREE(state); in virtual_file_ex()
1331 *state = old_state; in virtual_file_ex()
1339 tmp = realloc(state->cwd, state->cwd_length+1); in virtual_file_ex()
[all …]
H A Dtsrm_virtual_cwd.h204 CWD_API int virtual_file_ex(cwd_state *state, const char *path, verify_path_func verify_path, int u…
/PHP-5.5/Zend/tests/
H A Dbug39438.phpt15 'state' => 'stable',
/PHP-5.5/Zend/
H A Dzend_ini_scanner.c55 #define BEGIN(state) YYSETCONDITION(STATE(state)) argument
H A Dzend_ini_scanner.l53 #define BEGIN(state) YYSETCONDITION(STATE(state)) argument
H A Dzend_language_scanner.c67 #define BEGIN(state) YYSETCONDITION(STATE(state)) argument
H A Dzend_language_scanner.l65 #define BEGIN(state) YYSETCONDITION(STATE(state)) argument
/PHP-5.5/ext/curl/tests/
H A Dcurl_basic_017.phpt43 $state = null;
45 $state = curl_multi_exec($mh, $running);
57 if($state === CURLM_OK) {
/PHP-5.5/ext/date/lib/
H A Dparse_date.re136 #define YYDEBUG(s,c) { if (s != -1) { printf("state: %d ", s); printf("[%c]\n", c); } }
H A Dparse_iso_intervals.re79 #define YYDEBUG(s,c) { if (s != -1) { printf("state: %d ", s); printf("[%c]\n", c); } }
/PHP-5.5/ext/dom/tests/
H A DDOMDocumentType_entities_error_001.phpt2 DOMDocumentType::entities with invalid state.
H A DDOMDocumentType_internalSubset_error_001.phpt2 DOMDocumentType::internalSubset with invalid state.
H A DDOMDocumentType_name_error_001.phpt2 DOMDocumentType::name with invalid state.
H A DDOMDocumentType_notations_error_001.phpt2 DOMDocumentType::notations with invalid state.
H A DDOMDocumentType_publicId_error_001.phpt2 DOMDocumentType::publicId with invalid state.
H A DDOMDocumentType_systemId_error_001.phpt2 DOMDocumentType::systemId with invalid state.
/PHP-5.5/ext/fileinfo/libmagic/
H A Dfuncs.c363 mbstate_t state; in file_getbuffer() local
368 (void)memset(&state, 0, sizeof(mbstate_t)); in file_getbuffer()
376 (size_t)(eop - op), &state); in file_getbuffer()
/PHP-5.5/ext/fileinfo/tests/
H A Dmagic186 # Saved game files start with "T3-state-v####\015\012\032"
188 0 string T3-state-v
14565 >0x14 byte&0x20 0x20 system-state
/PHP-5.5/ext/gd/libgd/
H A Dgdhelpers.c15 gd_strtok_r (char *s, char *sep, char **state) in gd_strtok_r() argument
29 s = *state; in gd_strtok_r()
35 *state = s; in gd_strtok_r()
49 *state = s; in gd_strtok_r()
60 *state = s; in gd_strtok_r()
74 *state = s; in gd_strtok_r()
H A Dgdhelpers.h9 extern char *gd_strtok_r(char *s, char *sep, char **state);
/PHP-5.5/ext/hash/
H A Dhash_adler32.c27 context->state = 1; in PHP_ADLER32Init()
34 s[0] = context->state & 0xffff; in PHP_ADLER32Update()
35 s[1] = (context->state >> 16) & 0xffff; in PHP_ADLER32Update()
47 context->state = s[0] + (s[1] << 16); in PHP_ADLER32Update()
52 digest[0] = (unsigned char) ((context->state >> 24) & 0xff); in PHP_ADLER32Final()
53 digest[1] = (unsigned char) ((context->state >> 16) & 0xff); in PHP_ADLER32Final()
54 digest[2] = (unsigned char) ((context->state >> 8) & 0xff); in PHP_ADLER32Final()
55 digest[3] = (unsigned char) (context->state & 0xff); in PHP_ADLER32Final()
56 context->state = 0; in PHP_ADLER32Final()
61 copy_context->state = orig_context->state; in PHP_ADLER32Copy()

Completed in 139 milliseconds

1234567