Home
last modified time | relevance | path

Searched refs:hdl (Results 1 – 22 of 22) sorted by relevance

/PHP-5.5/win32/
H A Dflock.c57 HANDLE hdl = (HANDLE) _get_osfhandle(fd); in flock() local
61 if (hdl < 0) in flock()
64 UnlockFileEx(hdl, 0, low, high, &offset); in flock()
67 if (LockFileEx(hdl, LOCKFILE_EXCLUSIVE_LOCK + in flock()
73 if (LockFileEx(hdl, ((op & LOCK_NB) ? LOCKFILE_FAIL_IMMEDIATELY : 0), in flock()
/PHP-5.5/ext/standard/
H A Dflock_compat.c124 HANDLE hdl = (HANDLE) _get_osfhandle(fd);
130 if (hdl < 0) {
135 UnlockFileEx(hdl, 0, low, high, &offset);
138 if (LockFileEx(hdl, LOCKFILE_EXCLUSIVE_LOCK +
144 if (LockFileEx(hdl, ((operation & LOCK_NB) ? LOCKFILE_FAIL_IMMEDIATELY : 0),
/PHP-5.5/ext/xml/
H A Dxml.c122 ZEND_ARG_INFO(0, hdl)
127 ZEND_ARG_INFO(0, hdl)
132 ZEND_ARG_INFO(0, hdl)
137 ZEND_ARG_INFO(0, hdl)
142 ZEND_ARG_INFO(0, hdl)
147 ZEND_ARG_INFO(0, hdl)
1294 zval *pind, **hdl; in PHP_FUNCTION() local
1313 zval *pind, **hdl; in PHP_FUNCTION() local
1332 zval *pind, **hdl; in PHP_FUNCTION() local
1350 zval *pind, **hdl; in PHP_FUNCTION() local
[all …]
/PHP-5.5/ext/xml/tests/
H A Dxml_set_character_data_handler_error.phpt11 /* Prototype : proto int xml_set_character_data_handler(resource parser, string hdl)
23 $hdl = 'string_val';
25 var_dump( xml_set_character_data_handler(null, $hdl, $extra_arg) );
H A Dxml_set_default_handler_error.phpt11 /* Prototype : proto int xml_set_default_handler(resource parser, string hdl)
23 $hdl = 'string_val';
25 var_dump( xml_set_default_handler(null, $hdl, $extra_arg) );
H A Dxml_set_external_entity_ref_handler_error.phpt11 /* Prototype : proto int xml_set_external_entity_ref_handler(resource parser, string hdl)
23 $hdl = 'string_val';
25 var_dump( xml_set_external_entity_ref_handler(null, $hdl, $extra_arg) );
H A Dxml_set_processing_instruction_handler_error.phpt11 /* Prototype : proto int xml_set_processing_instruction_handler(resource parser, string hdl)
23 $hdl = 'string_val';
25 var_dump( xml_set_processing_instruction_handler(null, $hdl, $extra_arg) );
H A Dxml_set_start_namespace_decl_handler_error.phpt11 /* Prototype : proto int xml_set_start_namespace_decl_handler(resource parser, string hdl)
23 $hdl = 'string_val';
25 var_dump( xml_set_start_namespace_decl_handler(null, $hdl, $extra_arg) );
H A Dxml_set_element_handler_error.phpt23 $hdl = 'string_val';
25 var_dump( xml_set_element_handler(null, $hdl, $hdl, $extra_arg) );
H A Dxml_set_end_namespace_decl_handler_error.phpt11 /* Prototype : proto int xml_set_end_namespace_decl_handler(resource parser, string hdl)
23 $hdl = 'string_val';
25 var_dump( xml_set_end_namespace_decl_handler(null, $hdl, $extra_arg) );
H A Dxml_set_notation_decl_handler_error.phpt11 /* Prototype : proto int xml_set_notation_decl_handler(resource parser, string hdl)
23 $hdl = 'string_val';
25 var_dump( xml_set_notation_decl_handler(null, $hdl, $extra_arg) );
H A Dxml_set_unparsed_entity_decl_handler_error.phpt11 /* Prototype : proto int xml_set_unparsed_entity_decl_handler(resource parser, string hdl)
23 $hdl = 'string_val';
25 var_dump( xml_set_unparsed_entity_decl_handler(null, $hdl, $extra_arg) );
H A Dxml_set_character_data_handler_variation1.phpt11 /* Prototype : proto int xml_set_character_data_handler(resource parser, string hdl)
30 $hdl = 'validHandler';
96 var_dump( xml_set_character_data_handler($value, $hdl) );
H A Dxml_set_processing_instruction_handler_variation1.phpt11 /* Prototype : proto int xml_set_processing_instruction_handler(resource parser, string hdl)
30 $hdl = 'validHandler';
96 var_dump( xml_set_processing_instruction_handler($value, $hdl) );
H A Dxml_set_default_handler_variation1.phpt11 /* Prototype : proto int xml_set_default_handler(resource parser, string hdl)
30 $hdl = 'validHandler';
96 var_dump( xml_set_default_handler($value, $hdl) );
H A Dxml_set_element_handler_variation1.phpt30 $hdl = 'validHandler';
96 var_dump( xml_set_element_handler($value, $hdl, $hdl) );
H A Dxml_set_end_namespace_decl_handler_variation1.phpt11 /* Prototype : proto int xml_set_end_namespace_decl_handler(resource parser, string hdl)
30 $hdl = 'validHandler';
96 var_dump( xml_set_end_namespace_decl_handler($value, $hdl) );
H A Dxml_set_external_entity_ref_handler_variation1.phpt11 /* Prototype : proto int xml_set_external_entity_ref_handler(resource parser, string hdl)
30 $hdl = 'validHandler';
96 var_dump( xml_set_external_entity_ref_handler($value, $hdl) );
H A Dxml_set_notation_decl_handler_variation1.phpt11 /* Prototype : proto int xml_set_notation_decl_handler(resource parser, string hdl)
30 $hdl = 'validHandler';
96 var_dump( xml_set_notation_decl_handler($value, $hdl) );
H A Dxml_set_start_namespace_decl_handler_variation1.phpt11 /* Prototype : proto int xml_set_start_namespace_decl_handler(resource parser, string hdl)
30 $hdl = 'validHandler';
96 var_dump( xml_set_start_namespace_decl_handler($value, $hdl) );
H A Dxml_set_unparsed_entity_decl_handler_variation1.phpt11 /* Prototype : proto int xml_set_unparsed_entity_decl_handler(resource parser, string hdl)
30 $hdl = 'validHandler';
96 var_dump( xml_set_unparsed_entity_decl_handler($value, $hdl) );
/PHP-5.5/ext/mysqli/
H A Dmysqli_warning.c271 MYSQL *hdl; local
301 hdl = mysqli_stmt_get_connection(stmt->stmt);
302 if (mysql_warning_count(hdl)) {
303 w = php_get_warnings(hdl TSRMLS_CC);

Completed in 24 milliseconds