Home
last modified time | relevance | path

Searched refs:ss (Results 1 – 25 of 32) sorted by relevance

12

/PHP-5.4/ext/zip/lib/
H A Dzip_error_to_str.c48 const char *zs, *ss; in zip_error_to_str() local
57 ss = strerror(se); in zip_error_to_str()
61 ss = zError(se); in zip_error_to_str()
65 ss = NULL; in zip_error_to_str()
69 zs, (ss ? ": " : ""), (ss ? ss : "")); in zip_error_to_str()
H A Dzip_error_strerror.c48 const char *zs, *ss; in _zip_error_strerror() local
56 ss = buf; in _zip_error_strerror()
63 ss = strerror(err->sys_err); in _zip_error_strerror()
67 ss = zError(err->sys_err); in _zip_error_strerror()
71 ss = NULL; in _zip_error_strerror()
75 if (ss == NULL) in _zip_error_strerror()
78 if ((s=(char *)malloc(strlen(ss) in _zip_error_strerror()
85 ss); in _zip_error_strerror()
/PHP-5.4/ext/ereg/regex/
H A Dengine.c255 for (ss = startst; ss < stopst; ss = es) {
257 es = ss;
306 ssub = ss + 1;
330 ssub = ss + 1;
366 ssub = ss + 1;
367 esub = ss + OPND(m->g->strip[ss]) - 1;
446 for (ss = startst; !hard && ss < stopst; ss++)
502 ss++;
506 ss += OPND(s);
539 ss++;
[all …]
/PHP-5.4/ext/spl/tests/
H A DSplDoublyLinkedList_serialization.phpt10 var_dump($q, $ss = serialize($q), unserialize($ss));
17 var_dump($s, $ss = serialize($s), unserialize($ss));
H A Dbug49263.phpt15 $ss = serialize($s);
17 echo $ss."\n";
18 var_dump(unserialize($ss));
/PHP-5.4/ext/fileinfo/libmagic/
H A Dcdf.c288 ss * sst->sst_len, ss, sst->sst_len)); in cdf_check_stream_offset()
359 assert(ss == len); in cdf_read_sector()
369 assert(ss == len); in cdf_read_short_sector()
416 if (cdf_read_sector(info, sat->sat_tab, ss * i, ss, h, in cdf_read_sat()
435 if (cdf_read_sector(info, msa, 0, ss, h, mid) != (ssize_t)ss) { in cdf_read_sat()
449 if (cdf_read_sector(info, sat->sat_tab, ss * i, ss, h, in cdf_read_sat()
524 if ((nr = cdf_read_sector(info, scn->sst_tab, i * ss, ss, h, in cdf_read_long_sector_chain()
570 if (cdf_read_short_sector(sst, scn->sst_tab, i * ss, ss, h, in cdf_read_short_sector_chain()
628 if (cdf_read_sector(info, buf, 0, ss, h, sid) != (ssize_t)ss) { in cdf_read_dir()
679 if (cdf_read_sector(info, ssat->sat_tab, i * ss, ss, h, sid) != in cdf_read_ssat()
[all …]
/PHP-5.4/ext/intl/tests/
H A Ddateformat_get_set_pattern2.phpt18 'DD-MM-YYYY hh:mm:ss',
19 'yyyy-DDD.hh:mm:ss z',
64 Setting IntlDateFormatter with pattern = DD-MM-YYYY hh:mm:ss
65 After call to get_pattern : pattern= DD-MM-YYYY hh:mm:ss
70 Setting IntlDateFormatter with pattern = yyyy-DDD.hh:mm:ss z
71 After call to get_pattern : pattern= yyyy-DDD.hh:mm:ss z
H A Ddateformat_get_set_pattern.phpt18 'DD-MM-YYYY hh:mm:ss',
19 'yyyy-DDD.hh:mm:ss z',
64 Setting IntlDateFormatter with pattern = DD-MM-YYYY hh:mm:ss
65 After call to get_pattern : pattern= DD-MM-YYYY hh:mm:ss
70 Setting IntlDateFormatter with pattern = yyyy-DDD.hh:mm:ss z
71 After call to get_pattern : pattern= yyyy-DDD.hh:mm:ss z
H A Dresourcebundle_null_mandatory_args_variant2.phpt24 string(14) "h:mm:ss a zzzz"
25 string(13) "HH:mm:ss zzzz"
H A Dresourcebundle_null_mandatory_args.phpt24 string(14) "h:mm:ss a zzzz"
25 string(12) "H:mm:ss zzzz"
H A Ddateformat_clone.phpt21 ut_datefmt_set_pattern( $fmt , 'yyyy-DDD.hh:mm:ss z' );
H A Ddateformat_clone2.phpt21 ut_datefmt_set_pattern( $fmt , 'yyyy-DDD.hh:mm:ss z' );
/PHP-5.4/main/
H A Dphp_variables.c457 char *ss, *space; in php_build_argv() local
482 ss = s; in php_build_argv()
483 while (ss) { in php_build_argv()
484 space = strchr(ss, '+'); in php_build_argv()
491 Z_STRLEN_P(tmp) = strlen(ss); in php_build_argv()
492 Z_STRVAL_P(tmp) = estrndup(ss, Z_STRLEN_P(tmp)); in php_build_argv()
502 ss = space + 1; in php_build_argv()
504 ss = space; in php_build_argv()
H A Dalloca.c249 long ss[0200]; /* 0200 overflow words. */ member
/PHP-5.4/ext/mysqli/tests/
H A D059.phpt24 mysqli_stmt_bind_param($stmt, "ss", $a, $b);
H A D021.phpt21 mysqli_stmt_bind_param($stmt, "ss", $q1, $q2);
H A D022.phpt22 mysqli_stmt_bind_param($stmt, "ss", $a1, $a2);
H A Dmysqli_ps_select_union.phpt177 if (!$stmt->bind_param('ss', $three, $two) || !$stmt->execute() || !$stmt->bind_result($column1))
196 if (!$stmt->bind_param('ss', $three, $two) || !$stmt->bind_result($column1) || !$stmt->execute())
217 if (!$stmt->bind_param('ss', $three, $two) || !$stmt->execute() || !$stmt->bind_result($column1))
236 if (!$stmt->bind_param('ss', $three, $two) || !$stmt->bind_result($column1) || !$stmt->execute())
H A Dmysqli_stmt_execute_stored_proc_out.phpt38 if (!mysqli_stmt_bind_param($stmt, 'ss', $ver_in, $ver_out))
H A Dmysqli_stmt_bind_param_type_juggling.phpt111 bind_param('ss', 1, 2) --> OK (string column, int value)
/PHP-5.4/tests/strings/
H A D001.phpt172 $ss = stripslashes($str);
173 if ($ss == "\$'") {
/PHP-5.4/ext/mbstring/oniguruma/
H A Dregexec.c1166 ss = *s; in backref_match_at_nested_level()
1179 *s = ss; in backref_match_at_nested_level()
1627 ss = s; in match_at()
1721 ss = s; in match_at()
1842 UChar *ss; in match_at() local
1848 ss = s; in match_at()
1903 UChar *ss; in match_at() local
1913 ss = s; in match_at()
1954 UChar *ss; in match_at() local
1959 ss = s; in match_at()
[all …]
/PHP-5.4/ext/snmp/
H A Dsnmp.c709 struct snmp_session *ss; in php_snmp_internal() local
734 if ((ss = snmp_open(session)) == NULL) { in php_snmp_internal()
765 snmp_close(ss); in php_snmp_internal()
776 snmp_close(ss); in php_snmp_internal()
786 snmp_close(ss); in php_snmp_internal()
802 snmp_close(ss); in php_snmp_internal()
930 snmp_close(ss); in php_snmp_internal()
943 snmp_close(ss); in php_snmp_internal()
947 snmp_error(ss, NULL, NULL, &err); in php_snmp_internal()
953 snmp_close(ss); in php_snmp_internal()
[all …]
/PHP-5.4/ext/sockets/
H A Dsockets.c707 static int php_set_inet46_addr(php_sockaddr_storage *ss, socklen_t *ss_len, char *string, php_socke… argument
712 memcpy(ss, &t, sizeof t);
713 ss->ss_family = AF_INET;
722 memcpy(ss, &t, sizeof t);
723 ss->ss_family = AF_INET6;
796 php_socket *sock, php_sockaddr_storage *ss, socklen_t *ss_len TSRMLS_DC) argument
808 if (!php_set_inet46_addr(ss, ss_len, Z_STRVAL_P(valcp), sock TSRMLS_CC)) {
/PHP-5.4/ext/soap/
H A Dsoap.c132 #define FETCH_THIS_SDL(ss) \ argument
136 FETCH_SDL_RES(ss,__tmp); \
138 ss = NULL; \
142 #define FIND_SDL_PROPERTY(ss,tmp) zend_hash_find(Z_OBJPROP_P(ss), "sdl", sizeof("sdl"), (void **)&t… argument
143 #define FETCH_SDL_RES(ss,tmp) ss = (sdlPtr) zend_fetch_resource(tmp TSRMLS_CC, -1, "sdl", NULL, 1, … argument
145 #define FIND_TYPEMAP_PROPERTY(ss,tmp) zend_hash_find(Z_OBJPROP_P(ss), "typemap", sizeof("typemap"),… argument
146 #define FETCH_TYPEMAP_RES(ss,tmp) ss = (HashTable*) zend_fetch_resource(tmp TSRMLS_CC, -1, "typemap… argument
148 #define FETCH_THIS_SERVICE(ss) \ argument
152 ss = (soapServicePtr)zend_fetch_resource(tmp TSRMLS_CC, -1, "service", NULL, 1, le_service); \
154 ss = NULL; \

Completed in 147 milliseconds

12