| /PHP_TRUNK/Zend/ |
| H A D | zend_signal.c | 80 if (SIGG(depth) == 0) { /* try to handle signal */ 291 SIGG(depth) = 0; 302 if (SIGG(depth) != 0) { 303 zend_error(E_CORE_WARNING, "zend_signal: shutdown with non-zero blocking depth (%d)", SIGG(depth)); 318 SIGG(depth) = 0;
|
| H A D | zend_signal.h | 57 int depth; member in struct:_zend_signal_globals_t 72 # define ZEND_SIGNAL_BLOCK_INTERRUPUTIONS() if (EXPECTED(zend_signal_globals_id)) { SIGG(depth)++; } 73 # define ZEND_SIGNAL_UNBLOCK_INTERRUPTIONS() if (EXPECTED(zend_signal_globals_id) && UNEXPECTED((--SIGG(depth))==SIGG(blocked))) { zend_signal_handler_unblock(TSRMLS_C); } 77 # define ZEND_SIGNAL_BLOCK_INTERRUPUTIONS() SIGG(depth)++; 78 # define ZEND_SIGNAL_UNBLOCK_INTERRUPTIONS() if (UNEXPECTED((--SIGG(depth))==SIGG(blocked))) { zend_signal_handler_unblock(TSRMLS_C); }
|
| /PHP_TRUNK/ext/session/ |
| H A D | mod_files.bat | 9 ECHO Usage %0 ^<basedir^> ^<depth^> ^[^hash_bits^]
12 ECHO ^<depth^> is the number of levels defined in session.save_path
52 ECHO ERROR: Invalid depth : %2
|
| /PHP_TRUNK/ext/spl/internal/ |
| H A D | recursivetreeiterator.inc | 43 /** Prefix used if $level < depth and hasNext($level) == true. */ 45 /** Prefix used if $level < depth and hasNext($level) == false. */ 47 /** Prefix used if $level == depth and hasNext($level) == true. */ 49 /** Prefix used if $level == depth and hasNext($level) == false. */
|
| /PHP_TRUNK/ext/sqlite3/libsqlite/ |
| H A D | sqlite3.c | 146 ** The maximum depth of an expression tree. This is limited to 286 ** Maximum depth of recursion for triggers. 3257 ** <dd>The maximum depth of the parse tree on any expression.</dd>)^ 3284 ** <dd>The maximum depth of recursion for triggers.</dd>)^ 11051 int mxParserStack; /* maximum depth of the parser stack */ 15321 SQLITE_PRIVATE void sqlite3MemdebugBacktrace(int depth){ argument 15322 if( depth<0 ){ depth = 0; } 15323 if( depth>20 ){ depth 55123 int i, rc, depth, d2, pgno, cnt; local [all...] |
| /PHP_TRUNK/ext/xmlreader/examples/ |
| H A D | xmlreader_file.php | 8 print "Node Depth: ".$reader->depth."\n";
|
| H A D | xmlreader_relaxNG.php | 12 /* Print node name indenting it based on depth and $indent var */ 13 print str_repeat(" ", $reader->depth * $indent).$reader->name."\n";
|
| H A D | xmlreader_string.php | 19 print "Node Depth: ".$reader->depth."\n";
|
| H A D | xmlreader_validatedtd.php | 9 /* Print node name indenting it based on depth and $indent var */ 10 print str_repeat(" ", $xml->depth * $indent).$xml->name."\n"; 13 print str_repeat(" ", $xml->depth * $indent)." Number of Attributes: ".$xml->attributeCount."\n";
|
| /PHP_TRUNK/ext/xmlrpc/libxmlrpc/ |
| H A D | xml_element.c | 376 static void xml_element_serialize(xml_element *el, int (*fptr)(void *data, const char *text, int size), void *data, XML_ELEM_OUTPUT_OPTIONS options, int depth) argument 383 depth++; 394 if(depth == 1) { 412 if(options->verbosity == xml_elem_pretty && depth > 2) { 413 xml_elem_writefunc(fptr, whitespace, data, depth - 2); 482 xml_element_serialize(kids, fptr, data, options, depth); 486 if(options->verbosity == xml_elem_pretty && depth > 2) { 487 xml_elem_writefunc(fptr, whitespace, data, depth - 2);
|
| H A D | xml_to_soap.c | 238 int depth) { 246 /* increment recursion depth guage */ 247 depth ++; 312 depth 1 = Envelope, 2 = Header, Body & Fault, 3 = methodcall or response. */ 313 if (depth == 3) { 395 if ( depth <= 2 || 396 (rtype == xmlrpc_request_response && depth <= 3) ) { 397 xml_element_to_SOAP_REQUEST_worker(request, NULL, ai, xCurrent, iter, depth); 403 xml_element_to_SOAP_REQUEST_worker(request, xCurrent, ai, xNext, iter, depth); 233 xml_element_to_SOAP_REQUEST_worker(XMLRPC_REQUEST request, XMLRPC_VALUE xParent, struct array_info* parent_array, XMLRPC_VALUE xCurrent, xml_element* el, int depth) argument
|
| H A D | xml_to_xmlrpc.c | 190 XMLRPC_REQUEST_TYPE request_type, int depth) { 200 if (depth == 0 && 206 xml_element* next_el = XMLRPC_to_xml_element_worker(NULL, node, request_type, depth + 1); 259 if(depth == 0) { 290 xml_element* next_el = XMLRPC_to_xml_element_worker(node, xIter, request_type, depth + 1); 306 if (depth == 1) { 189 XMLRPC_to_xml_element_worker(XMLRPC_VALUE current_vector, XMLRPC_VALUE node, XMLRPC_REQUEST_TYPE request_type, int depth) argument
|
| /PHP_TRUNK/main/ |
| H A D | alloca.c | 129 (b) keep track of stack depth. 144 char *deep; /* For stack depth measure. */ 161 auto char probe; /* Probes stack depth: */ 162 register char *depth = ADDRESS_FUNCTION (probe); local 180 if ((STACK_DIR > 0 && hp->h.deep > depth) 181 || (STACK_DIR < 0 && hp->h.deep < depth)) 212 ((header *) new)->h.deep = depth;
|
| /PHP_TRUNK/ |
| H A D | server-tests.php | 1081 // matches directory depth from the base path 1083 $depth = substr_count($parts['path'],'/'); variable 1085 for ($i=0 ; $i < $depth; $i++) $docroot = dirname($docroot);
|
| /PHP_TRUNK/ext/json/ |
| H A D | JSON_parser.c | 205 if (jp->top >= jp->depth) { 231 object. It takes a depth parameter that restricts the level of maximum 242 new_JSON_parser(int depth) argument 246 jp->depth = depth; 249 jp->stack = (int*)ecalloc(depth, sizeof(int)); 250 if (depth > JSON_PARSER_DEFAULT_DEPTH) { 251 jp->the_zstack = (zval **)safe_emalloc(depth, sizeof(zval), 0);
|
| H A D | JSON_parser.h | 14 int depth; member in struct:JSON_parser_struct 34 extern JSON_parser new_JSON_parser(int depth);
|
| H A D | json.c | 50 ZEND_ARG_INFO(0, depth) 56 ZEND_ARG_INFO(0, depth) 664 PHP_JSON_API void php_json_decode_ex(zval *return_value, char *str, int str_len, int options, long depth TSRMLS_DC) /* {{{ */ 682 if (depth <= 0) { 689 jp = new_JSON_parser(depth); 759 /* {{{ proto string json_encode(mixed data [, int options[, int depth]]) 766 long depth = JSON_PARSER_DEFAULT_DEPTH; local 768 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "z|ll", ¶meter, &options, &depth) == FAILURE) { 774 JSON_G(encode_max_depth) = depth; 788 /* {{{ proto mixed json_decode(string json [, bool assoc [, long depth]]) 795 long depth = JSON_PARSER_DEFAULT_DEPTH; local [all...] |
| H A D | php_json.h | 53 PHP_JSON_API void php_json_decode_ex(zval *return_value, char *str, int str_len, int options, long depth TSRMLS_DC); 77 static inline void php_json_decode(zval *return_value, char *str, int str_len, zend_bool assoc, long depth TSRMLS_DC) 79 php_json_decode_ex(return_value, str, str_len, assoc ? PHP_JSON_OBJECT_AS_ARRAY : 0, depth TSRMLS_CC);
|
| /PHP_TRUNK/ext/xmlrpc/ |
| H A D | xmlrpc-epi-php.c | 520 static XMLRPC_VALUE PHP_to_XMLRPC_worker (const char* key, zval* in_val, int depth TSRMLS_DC) 599 XMLRPC_AddValueToVector(xReturn, PHP_to_XMLRPC_worker(num_str, *pIter, depth++ TSRMLS_CC)); 604 XMLRPC_AddValueToVector(xReturn, PHP_to_XMLRPC_worker(my_key, *pIter, depth++ TSRMLS_CC));
|
| /PHP_TRUNK/ext/openssl/ |
| H A D | openssl.c | 4725 int err, depth, ret; local 4733 depth = X509_STORE_CTX_get_error_depth(ctx); 4744 /* check the depth */ 4748 if (depth > Z_LVAL_PP(val)) {
|