Home
last modified time | relevance | path

Searched refs:cursor (Results 1 – 25 of 41) sorted by last modified time

12

/PHP-5.5/
H A Dphp.ini-development1031 ; Controls the ODBC cursor model.
H A Dphp.ini-production1031 ; Controls the ODBC cursor model.
/PHP-5.5/ext/zip/
H A Dzip_stream.c22 size_t cursor; member
50 self->cursor += n; in php_zip_ops_read()
219 self->cursor = 0; in php_stream_zip_open()
298 self->cursor = 0; in php_stream_zip_opener()
/PHP-5.5/ext/xmlrpc/libxmlrpc/
H A Dqueue.c135 q->cursor = q->head; in Q_Init()
241 q->cursor = q->head; in Q_Head()
266 q->cursor = q->tail; in Q_Tail()
313 q->cursor = q->head; in Q_PushHead()
363 q->cursor = q->tail; in Q_PushTail()
482 if(!q->cursor || q->cursor->next == NULL) in Q_Next()
485 q->cursor = (node *)q->cursor->next; in Q_Next()
515 q->cursor = (node *)q->cursor->prev; in Q_Previous()
549 q->cursor = p; in Q_Iter_Del()
551 q->cursor = n; in Q_Iter_Del()
[all …]
H A Dqueue.h38 node *head, *tail, *cursor; member
/PHP-5.5/ext/standard/
H A Dvar_unserializer.c240 #define YYCURSOR cursor
252 char cursor; in parse_iv2() local
265 cursor = (char)*p; in parse_iv2()
266 if (cursor >= '0' && cursor <= '9') { in parse_iv2()
286 unsigned char cursor; in parse_uiv() local
294 cursor = *p; in parse_uiv()
295 if (cursor >= '0' && cursor <= '9') { in parse_uiv()
471 const unsigned char *cursor, *limit, *marker, *start; in php_var_unserialize() local
475 cursor = *p; in php_var_unserialize()
481 if (var_hash && cursor[0] != 'R') { in php_var_unserialize()
[all …]
H A Dvar_unserializer.re238 #define YYCURSOR cursor
256 char cursor;
269 cursor = (char)*p;
270 if (cursor >= '0' && cursor <= '9') {
290 unsigned char cursor;
298 cursor = *p;
299 if (cursor >= '0' && cursor <= '9') {
475 const unsigned char *cursor, *limit, *marker, *start;
479 cursor = *p;
485 if (var_hash && cursor[0] != 'R') {
[all …]
H A Dhtml.c67 *cursor = pos + (advance); \
93 size_t *cursor, in get_next_char() argument
96 size_t pos = *cursor; in get_next_char()
344 *cursor = pos; in get_next_char()
354 size_t *cursor, in php_next_utf8_char() argument
1140 size_t *cursor) in find_entity_for_char() argument
1162 if (!(*cursor < oldlen)) in find_entity_for_char()
1186 *cursor = cursor_before; in find_entity_for_char()
1269 cursor = 0; in php_escape_html_entities_ex()
1270 while (cursor < oldlen) { in php_escape_html_entities_ex()
[all …]
H A Dhtml.h60 PHPAPI unsigned int php_next_utf8_char(const unsigned char *str, size_t str_len, size_t *cursor, in…
/PHP-5.5/ext/standard/tests/array/
H A Deach.phpt6 and advance the array cursor */
/PHP-5.5/ext/pdo/tests/
H A Dbug_44861.phpt2 PDO Common: Bug #44861 (scrollable cursor don't work with pgsql)
/PHP-5.5/ext/pdo/
H A Dpdo_sql_parser.c32 #define RET(i) {s->cur = cursor; return i; }
36 #define YYCURSOR cursor
47 char *cursor = s->cur; in scan() local
49 s->tok = cursor; in scan()
H A Dpdo_sql_parser.re30 #define RET(i) {s->cur = cursor; return i; }
34 #define YYCURSOR cursor
45 char *cursor = s->cur;
47 s->tok = cursor;
/PHP-5.5/ext/oci8/tests/
H A Drefcur_prefetch_1.phpt2 Prefetch with REF cursor. Test different values for prefetch with oci_set_prefetch().
22 type refcursortype is ref cursor;
H A Drefcur_prefetch_2.phpt2 Prefetch with REF cursor. Test No 2
22 type refcursortype is ref cursor;
56 // Steps to Fetch from PHP . For every sub-test,the cursor is bound and then executed.
66 // Steps to Fetch from PL/SQL . For every sub-test,the cursor is bound and then executed.
H A Drefcur_prefetch_3.phpt55 echo "Fetch Row using Nested cursor Query\n";
86 Fetch Row using Nested cursor Query
91 Fetch Row using Nested cursor Query
96 Fetch Row using Nested cursor Query
101 Fetch Row using Nested cursor Query
106 Fetch Row using Nested cursor Query
111 Fetch Row using Nested cursor Query
116 Fetch Row using Nested cursor Query
121 Fetch Row using Nested cursor Query
126 Fetch Row using Nested cursor Query
[all …]
H A Drefcur_prefetch_4.phpt2 Prefetch with REF cursor. Test No 4
24 type refcursortype is ref cursor;
58 // Steps to Fetch from PHP . For every sub-test,the cursor is bound and then executed.
68 // Steps to Fetch from PL/SQL . For every sub-test,the cursor is bound and then executed.
H A Ddefine6.phpt61 echo "Test 3 - define before cursor execute\n";
129 Test 3 - define before cursor execute
H A Dcursor_bind.phpt2 bind and fetch cursor from a statement
37 $cursor = oci_new_cursor($c);
38 oci_bind_by_name($stmt, ":curs", $cursor, -1, OCI_B_CURSOR);
42 oci_execute($cursor);
43 var_dump(oci_fetch_row($cursor));
44 var_dump(oci_fetch_row($cursor));
45 var_dump(oci_fetch_row($cursor));
46 var_dump(oci_fetch_row($cursor));
H A Dcursor_bind_err.phpt2 binding a cursor (with errors)
27 $sql = "select cursor(select * from cursor_bind_err_tab) into :cursor from dual";
30 $cursor = oci_new_cursor($c);
31 oci_bind_by_name($stmt, ":cursor", $cursor, -1, OCI_B_CURSOR);
35 oci_execute($cursor);
36 var_dump(oci_fetch_assoc($cursor));
H A Dcursors.phpt2 fetching cursor from a statement
H A Dcursors_old.phpt2 fetching cursor from a statement
27 $sql = "select cursor(select * from cursors_old_tab) as curs from dual";
H A Dbug38173.phpt43 CURSOR( SELECT * FROM t2 ) as cursor
H A Dbug42841.phpt49 $sql = "BEGIN bug42841_proc(:cursor); END;";
51 $cursor = oci_new_cursor($c);
52 oci_bind_by_name($stmt, ":cursor", $cursor, -1, OCI_B_CURSOR);
55 oci_execute($cursor);
62 oci_free_statement($cursor);
67 $sql = "BEGIN bug42841_proc(:cursor); END;";
69 $cursor = oci_new_cursor($c);
70 oci_bind_by_name($stmt, ":cursor", $cursor, -1, OCI_B_CURSOR);
73 oci_execute($cursor);
80 oci_free_statement($cursor);
[all …]
H A Dbug43492.phpt2 Bug #43492 (Nested cursor leaks)
32 While fetching data from a ref cursor, the parent statement needs to
34 not automatically released which causes a cursor leak.
43 $s = ociparse($c, 'select cursor(select * from bug43492_tab) c from bug43492_tab');

Completed in 186 milliseconds

12