Home
last modified time | relevance | path

Searched refs:offset (Results 251 – 275 of 649) sorted by relevance

1...<<11121314151617181920>>...26

/PHP-5.5/ext/pdo_mysql/tests/
H A Dpdo_mysql_exec_select.phpt11 function exec_and_count($offset, &$db, $sql, $exp) {
18 $offset, $exp, gettype($exp), $ret, gettype($ret), $sql,
25 $offset, $sql, $db->errorCode(), implode(' ', $db->errorInfo()));
H A Dpdo_mysql_stmt_getcolumnmeta.phpt37 // invalid offset
64 // invalid offset
66 printf("[009] Expecting false because of invalid offset got %s\n", var_export($tmp, true));
69 function test_meta(&$db, $offset, $sql_type, $value, $native_type, $pdo_type) {
80 printf("[%03d] + 1] Insert failed, %d - %s\n", $offset,
91 printf("[%03d + 2] getColumnMeta() failed, %d - %s\n", $offset,
99 printf("[%03d + 3] Element %s missing, %s\n", $offset,
105 printf("[%03d + 4] Table or field name is wrong, %s\n", $offset,
112 printf("[%03d + 5] Element native_type missing, %s\n", $offset,
129 printf("[%03d + 6] Expecting native type %s, %s\n", $offset,
[all …]
/PHP-5.5/ext/mysqli/tests/
H A Dmysqli_stmt_bind_param_references.phpt13 function findRow($offset, $link, $id, $label) {
19 $offset, $sql, mysqli_errno($link), mysqli_error($link));
24 $offset, $sql, mysqli_errno($link), mysqli_error($link));
31 $offset, gettype($id), $id,
39 $offset, gettype($label), $label,
49 $offset, $sql, mysqli_errno($link), mysqli_error($link));
H A Dmysqli_stmt_bind_result.phpt65 …function func_mysqli_stmt_bind_result($link, $engine, $bind_type, $sql_type, $bind_value, $offset,…
68 printf("[%04d] [%d] %s\n", $offset, mysqli_errno($link), mysqli_error($link));
78 printf("[%04d] [%d] %s\n", $offset + 1, mysqli_errno($link), mysqli_error($link));
83 printf("[%04d] [%d] %s\n", $offset + 2, mysqli_stmt_errno($stmt), mysqli_stmt_error($stmt));
89 printf("[%04d] [%d] %s\n", $offset + 3, mysqli_stmt_errno($stmt), mysqli_stmt_error($stmt));
96 … printf("[%04d] [%d] %s\n", $offset + 3 + $id, mysqli_stmt_errno($stmt), mysqli_stmt_error($stmt));
106 printf("[%04d] [%d] %s\n", $offset + 7, mysqli_stmt_errno($stmt), mysqli_stmt_error($stmt));
112 printf("[%04d] [%d] %s\n", $offset + 8, mysqli_stmt_errno($stmt), mysqli_stmt_error($stmt));
121 printf("[%04d] [%d] %s\n", $offset + 9, mysqli_stmt_errno($stmt), mysqli_stmt_error($stmt));
132 $offset + 10, $num,
[all …]
H A Dmysqli_fetch_array.phpt72 …function func_mysqli_fetch_array($link, $engine, $sql_type, $sql_value, $php_value, $offset, $rege…
75 printf("[%04d] [%d] %s\n", $offset, mysqli_errno($link), mysqli_error($link));
86 printf("[%04d] [%d] %s\n", $offset + 1, mysqli_errno($link), mysqli_error($link));
92 printf("[%04ds] [%d] %s - %s\n", $offset + 1, mysqli_errno($link), mysqli_error($link), $sql);
97 printf("[%04di] [%d] %s\n", $offset + 1, mysqli_errno($link), mysqli_error($link));
103 printf("[%04d] [%d] %s\n", $offset + 2, mysqli_errno($link), mysqli_error($link));
108 printf("[%04d] [%d] %s\n", $offset + 3, mysqli_errno($link), mysqli_error($link));
114 printf("[%04d] Expecting %s/%s [reg exp = %s], got %s/%s resp. %s/%s. [%d] %s\n", $offset + 4,
124 printf("[%04d] Expecting %s/%s, got %s/%s resp. %s/%s. [%d] %s\n", $offset + 5,
133 $offset + 6, $sql_type);
[all …]
/PHP-5.5/ext/mysqlnd/
H A Dmysqlnd_ps_codec.c548 unsigned int offset = *p - *buf; in mysqlnd_stmt_execute_store_params() local
550 *buf_len = offset + null_count + 20; in mysqlnd_stmt_execute_store_params()
556 memcpy(tmp_buf, *buf, offset); in mysqlnd_stmt_execute_store_params()
563 *p = *buf + offset; in mysqlnd_stmt_execute_store_params()
631 unsigned int offset = *p - *buf; in mysqlnd_stmt_execute_store_params() local
633 *buf_len = offset + stmt->param_count * 2 + 20; in mysqlnd_stmt_execute_store_params()
639 memcpy(tmp_buf, *buf, offset); in mysqlnd_stmt_execute_store_params()
646 *p = *buf + offset; in mysqlnd_stmt_execute_store_params()
769 unsigned int offset = *p - *buf; in mysqlnd_stmt_execute_store_params() local
777 memcpy(tmp_buf, *buf, offset); in mysqlnd_stmt_execute_store_params()
[all …]
/PHP-5.5/ext/mysql/tests/
H A Dmysql_fetch_array.phpt71 function func_mysql_fetch_array($link, $engine, $sql_type, $sql_value, $php_value, $offset, $regexp…
74 printf("[%04d] [%d] %s\n", $offset, mysql_errno($link), mysql_error($link));
84 printf("[%04d] [%d] %s\n", $offset + 1, mysql_errno($link), mysql_error($link));
90 printf("[%04d] [%d] %s\n", $offset + 1, mysql_errno($link), mysql_error($link));
93 printf("[%04d] [%d] %s\n", $offset + 1, mysql_errno($link), mysql_error($link));
99 printf("[%04d] [%d] %s\n", $offset + 2, mysql_errno($link), mysql_error($link));
104 printf("[%04d] [%d] %s\n", $offset + 3, mysql_errno($link), mysql_error($link));
110 printf("[%04d] Expecting %s/%s [reg exp = %s], got %s/%s resp. %s/%s. [%d] %s\n", $offset + 4,
120 printf("[%04d] Expecting %s/%s, got %s/%s resp. %s/%s. [%d] %s\n", $offset + 5,
128 $offset + 6, $sql_type);
[all …]
/PHP-5.5/ext/spl/tests/
H A DSplDoublyLinkedList_add_null_offset.phpt2 Check that SplDoublyLinkedList::add throws an exception with an invalid offset argument
H A Dbug64106.phpt7 public function offsetGet($offset) {}
H A DSplDoublyLinkedList_add_invalid_offset.phpt2 Check that SplDoublyLinkedList::add throws an exception with an invalid offset argument
/PHP-5.5/Zend/tests/
H A Dbug31098.phpt50 Warning: Illegal string offset 'wrong' in %s on line %d
54 Warning: Illegal string offset 'wrong' in %s on line %d
H A Dargument_restriction_005.phpt11 Fatal error: Declaration of Sub::offsetSet() must be compatible with ArrayAccess::offsetSet($offset
/PHP-5.5/ext/snmp/
H A Dsnmp.c377 int offset; member
731 objid_query->offset = objid_query->count; in php_snmp_internal()
770 …for (count = 0; objid_query->offset < objid_query->count && count < objid_query->step; objid_query… in php_snmp_internal()
772 …->offset].name, objid_query->vars[objid_query->offset].name_length, objid_query->vars[objid_query-… in php_snmp_internal()
773 …d(buf, sizeof(buf), objid_query->vars[objid_query->offset].name, objid_query->vars[objid_query->of… in php_snmp_internal()
781 …p_add_null_var(pdu, objid_query->vars[objid_query->offset].name, objid_query->vars[objid_query->of… in php_snmp_internal()
828 objid_query->offset = 0; in php_snmp_internal()
911 …objid_query->offset = ((objid_query->offset > objid_query->step) ? (objid_query->offset - objid_qu… in php_snmp_internal()
1109 for (objid_query->offset = 0; objid_query->offset < objid_query->count; objid_query->offset++) { in php_snmp_parse_oid()
1111 …id_query->vars[objid_query->offset].oid, objid_query->vars[objid_query->offset].name, &(objid_quer… in php_snmp_parse_oid()
[all …]
/PHP-5.5/Zend/
H A Dzend_compile.c3265 *(offset++) = '('; in zend_get_function_declaration()
3311 offset += 5; in zend_get_function_declaration()
3359 offset += 4; in zend_get_function_declaration()
3387 offset += 4; in zend_get_function_declaration()
3400 *offset = '\0'; in zend_get_function_declaration()
3536 child_info->offset = parent_info->offset; in do_inherit_property_access_check()
5747 if (offset) { in zend_do_init_array()
5779 if (offset) { in zend_do_add_array_element()
5806 if (offset) { in zend_do_add_static_array_element()
5811 …Z_STRVAL(offset->u.constant) = erealloc(Z_STRVAL(offset->u.constant), Z_STRLEN(offset->u.constant)… in zend_do_add_static_array_element()
[all …]
H A Dzend_alloc.c546 #define ZEND_MM_BLOCK_AT(blk, offset) ((zend_mm_block *) (((char *) (blk))+(offset))) argument
716 n = offset[_size & 15]; in zend_mm_low_bit()
720 n = offset[_size & 15]; in zend_mm_low_bit()
2472 "rm"(offset)); in safe_address()
2500 "rm"(offset)); in safe_address()
2521 "0"(offset), in safe_address()
2542 "r"(offset)); in safe_address()
2568 size_t res = nmemb * size + offset; in safe_address()
2569 double _d = (double)nmemb * (double)size + (double)offset; in safe_address()
2583 return emalloc_rel(safe_address(nmemb, size, offset)); in _safe_emalloc()
[all …]
/PHP-5.5/ext/standard/tests/serialize/
H A Dbug68044.phpt11 Notice: unserialize(): Error at offset 32 of 33 bytes in %s%ebug68044.php on line 2
H A Dbug67072.phpt11 Notice: unserialize(): Error at offset 24 of 64 bytes in %sbug67072.php on line %d
/PHP-5.5/ext/mbstring/tests/
H A Dmb_stripos_variation2.phpt10 /* Prototype : int mb_stripos(string haystack, string needle [, int offset [, string encoding]])
24 $offset = 0;
99 var_dump( mb_stripos($haystack, $input, $offset, $encoding));
H A Dmb_strpos_variation2.phpt10 /* Prototype : int mb_strpos(string $haystack, string $needle [, int $offset [, string $encoding]])
23 $offset = 0;
98 var_dump( mb_strpos($haystack, $input, $offset, $encoding));
/PHP-5.5/ext/oci8/tests/
H A Dreflection2.phpt52 Parameter #0 [ <optional> $offset ]
99 Parameter #0 [ <required> $offset ]
168 Parameter #1 [ <optional> $offset ]
/PHP-5.5/ext/date/tests/
H A Dbug26090.phpt2 Bug #26090 (allow colons in time zone offset to strtotime())
/PHP-5.5/ext/exif/tests/
H A Dbug72618.phpt10 Warning: exif_read_data(bug72618.jpg): IFD data bad offset: 0x058E length 0x0030 in %s/bug72618.php…
H A Dbug72603.phpt10 Warning: exif_read_data(bug72603.jpeg): IFD data bad offset: 0x058C length 0x001C in %s/bug72603.ph…
/PHP-5.5/ext/xmlrpc/libxmlrpc/
H A Dbase64.h17 int offset; member
/PHP-5.5/tests/lang/
H A Dbug29566.phpt15 Warning: Illegal string offset 'nosuchkey' in %sbug29566.php on line %d

Completed in 71 milliseconds

1...<<11121314151617181920>>...26