Home
last modified time | relevance | path

Searched refs:ps (Results 1 – 18 of 18) sorted by relevance

/PHP-5.5/ext/standard/
H A Dfilters.c506 ps += 2; in php_conv_base64_encode_convert()
533 ps += 1; in php_conv_base64_encode_convert()
561 ps += 3; in php_conv_base64_encode_convert()
782 (ps)++; \
837 ps++, icnt--; in php_conv_qprint_encode_convert()
877 ps2 = ps; in php_conv_qprint_encode_convert()
1060 ps++, icnt--; in php_conv_qprint_decode_convert()
1067 if (*ps == ' ' || *ps == '\t') { in php_conv_qprint_decode_convert()
1101 next_char = (next_char << 4) | (*ps >= 'A' ? *ps - 0x37 : *ps - 0x30); in php_conv_qprint_decode_convert()
1128 if (*ps != '\t' && *ps != ' ') { in php_conv_qprint_decode_convert()
[all …]
H A Dstreamsfuncs.c884 zval *ps[6]; in user_space_stream_notifier() local
890 ps[i] = &zvs[i]; in user_space_stream_notifier()
891 ptps[i] = &ps[i]; in user_space_stream_notifier()
892 MAKE_STD_ZVAL(ps[i]); in user_space_stream_notifier()
895 ZVAL_LONG(ps[0], notifycode); in user_space_stream_notifier()
896 ZVAL_LONG(ps[1], severity); in user_space_stream_notifier()
898 ZVAL_STRING(ps[2], xmsg, 1); in user_space_stream_notifier()
900 ZVAL_NULL(ps[2]); in user_space_stream_notifier()
902 ZVAL_LONG(ps[3], xcode); in user_space_stream_notifier()
904 ZVAL_LONG(ps[5], bytes_max); in user_space_stream_notifier()
[all …]
/PHP-5.5/sapi/cli/tests/
H A Dcli_process_title_unix.phpt18 $ps_output = shell_exec("ps -p $pid -o command | tail -n 1");
22 echo "ps failed\n";
34 echo "Successfully verified title using ps\n";
36 echo "Actually loaded from ps: $loaded_title\n";
48 Successfully verified title using ps
/PHP-5.5/ext/session/
H A Dmod_mm.c91 ps_sd *ps, *next; in hash_split() local
103 for (ps = *ohash; ps; ps = next) { in hash_split()
104 next = ps->next; in hash_split()
105 ps->next = nhash[ps->hv & nmax]; in hash_split()
106 nhash[ps->hv & nmax] = ps; in hash_split()
H A Dphp_session.h278 PHPAPI ZEND_EXTERN_MODULE_GLOBALS(ps)
H A Dsession.c62 PHPAPI ZEND_DECLARE_MODULE_GLOBALS(ps)
2382 static PHP_GINIT_FUNCTION(ps) /* {{{ */
2810 PHP_MODULE_GLOBALS(ps),
2811 PHP_GINIT(ps),
/PHP-5.5/sapi/fpm/
H A Dinit.d.php-fpm.in101 if ps -p $PID | grep -q $PID; then
/PHP-5.5/ext/posix/tests/
H A Dposix_errno_variation2.phpt21 $result = shell_exec("ps -p " . $pid);
H A Dposix_kill_basic.phpt19 $result = shell_exec("ps -p " . $pid);
/PHP-5.5/ext/standard/tests/general_functions/
H A Dproc_nice_basic.phpt16 $res = shell_exec('ps -p ' . $id .' -o "pid,nice"');
/PHP-5.5/ext/intl/tests/
H A Dformatter_get_set_attribute.phpt55 $ps = ut_nfmt_parse( $fmt, $rc );
60 dump( $ps ) );
77 $ps = ut_nfmt_parse( $fmt, $rc );
82 dump( $ps ) );
/PHP-5.5/ext/iconv/
H A Diconv.c2558 const char *ps, size_t buf_len, size_t *consumed, in php_iconv_stream_filter_append_bucket() argument
2568 if (ps == NULL) { in php_iconv_stream_filter_append_bucket()
2596 if (ps != NULL) { in php_iconv_stream_filter_append_bucket()
2602 self->stub[self->stub_len++] = *(ps++); in php_iconv_stream_filter_append_bucket()
2666 if ((ps == NULL ? iconv(self->cd, NULL, NULL, &pd, &ocnt): in php_iconv_stream_filter_append_bucket()
2667 iconv(self->cd, (char **)&ps, &icnt, &pd, &ocnt)) == (size_t)-1) { in php_iconv_stream_filter_append_bucket()
2675 if (ps != NULL) { in php_iconv_stream_filter_append_bucket()
2680 memcpy(self->stub, ps, icnt); in php_iconv_stream_filter_append_bucket()
2682 ps += icnt; in php_iconv_stream_filter_append_bucket()
2736 if (ps == NULL) { in php_iconv_stream_filter_append_bucket()
/PHP-5.5/ext/mbstring/
H A Dmbstring.c3850 const char *ps; in _php_mbstr_parse_mail_headers() local
3858 ps = str; in _php_mbstr_parse_mail_headers()
3873 switch (*ps) { in _php_mbstr_parse_mail_headers()
3884 APPEND_ONE_CHAR(*ps); in _php_mbstr_parse_mail_headers()
3920 APPEND_ONE_CHAR(*ps); in _php_mbstr_parse_mail_headers()
3929 token.c = (char *)ps; in _php_mbstr_parse_mail_headers()
3937 token.c = (char *)ps; in _php_mbstr_parse_mail_headers()
3966 token.c = (char *)ps; in _php_mbstr_parse_mail_headers()
3984 APPEND_ONE_CHAR(*ps); in _php_mbstr_parse_mail_headers()
3989 ps++, icnt--; in _php_mbstr_parse_mail_headers()
/PHP-5.5/ext/mysqlnd/
H A Dmysqlnd_result.c857 MYSQLND_METHOD(mysqlnd_res, use_result)(MYSQLND_RES * const result, zend_bool ps TSRMLS_DC) in MYSQLND_METHOD()
863 if (ps == FALSE) { in MYSQLND_METHOD()
899 result->row_packet->binary_protocol = ps; in MYSQLND_METHOD()
H A Dmysqlnd_structs.h615 …d_res__store_result)(MYSQLND_RES * result, MYSQLND_CONN_DATA * const conn, zend_bool ps TSRMLS_DC);
/PHP-5.5/ext/mbstring/oniguruma/win32/
H A DMakefile76 .SUFFIXES: .obj .c .h .ps .dvi .info .texinfo
/PHP-5.5/sapi/thttpd/
H A Dthttpd_patch1132 ps application/postscript
/PHP-5.5/ext/fileinfo/tests/
H A Dmagic14976 # Reference: http://partners.adobe.com/public/developer/en/ps/5003.PPD_Spec_v4.3.pdf, Section 3.8
15083 0 belong&0xff00ffff 0x56000000 ps database
16545 >2 string ps for PostScript
16552 0 string X\ ps SoftQuad troff Context intermediate for PostScript
17621 >4 search/1 ps for PostScript

Completed in 173 milliseconds