Home
last modified time | relevance | path

Searched refs:msg (Results 126 – 149 of 149) sorted by relevance

123456

/PHP-5.6/ext/imap/tests/
H A Dimap_fetch_overview_variation2.phpt23 $stream_id = setup_test_mailbox('', 1, $mailbox, 'notSimple'); // set up temp mailbox with 1 msg
H A Dimap_fetchbody_variation2.phpt24 $stream_id = setup_test_mailbox('', 1); // set up temp mailbox with 1 simple msg
/PHP-5.6/ext/openssl/
H A Dopenssl.mak25 .SUFFIXES: .nlm .lib .obj .cpp .c .msg .mlc .mdb .xdc .d
/PHP-5.6/ext/curl/
H A Dmulti.c285 add_assoc_long(return_value, "msg", tmp_msg->msg); in PHP_FUNCTION()
/PHP-5.6/ext/mysqlnd/
H A Dmysqlnd.h212 #define mysqlnd_stat(conn, msg, msg_len) ((conn)->data)->m->get_server_statistics(((conn)->data), ( argument
H A Dmysqlnd_ps.c688 char * msg; in MYSQLND_METHOD() local
689 mnd_sprintf(&msg, 0, "No data supplied for %u parameter%s in prepared statement", in MYSQLND_METHOD()
691 SET_STMT_ERROR(stmt, CR_PARAMS_NOT_BOUND, UNKNOWN_SQLSTATE, msg); in MYSQLND_METHOD()
692 if (msg) { in MYSQLND_METHOD()
693 mnd_sprintf_free(msg); in MYSQLND_METHOD()
H A Dmysqlnd_wireprotocol.c519 const char * const msg = "Authentication data too long. " in php_mysqlnd_auth_write() local
521 SET_CLIENT_ERROR(*conn->error_info, CR_UNKNOWN_ERROR, UNKNOWN_SQLSTATE, msg); in php_mysqlnd_auth_write()
522 php_error_docref(NULL TSRMLS_CC, E_WARNING, "%s", msg); in php_mysqlnd_auth_write()
/PHP-5.6/ext/pdo_pgsql/
H A Dpgsql_driver.c79 …h_t *dbh, pdo_stmt_t *stmt, int errcode, const char *sqlstate, const char *msg, const char *file, … in _pdo_pgsql_error() argument
102 if (msg) { in _pdo_pgsql_error()
103 einfo->errmsg = estrdup(msg); in _pdo_pgsql_error()
/PHP-5.6/ext/pdo_oci/
H A Doci_statement.c45 #define STMT_CALL_MSG(name, msg, params) \ argument
48 …S->last_err = _oci_error(S->err, stmt->dbh, stmt, #name ": " #msg, S->last_err, FALSE, __FILE__, _…
/PHP-5.6/ext/standard/tests/file/
H A Dtempnam_variation4.phpt45 $msg = " created in temp dir ";
48 $msg = " created in requested dir";
51 $msg = " created in unexpected dir";
54 echo $msg."\n";
/PHP-5.6/ext/interbase/
H A Dinterbase.c522 void _php_ibase_module_error(char *msg TSRMLS_DC, ...) /* {{{ */ in _php_ibase_module_error()
529 va_start(ap, msg); in _php_ibase_module_error()
533 vsnprintf(IBG(errmsg), MAX_ERRMSG, msg, ap); in _php_ibase_module_error()
/PHP-5.6/sapi/fpm/fpm/
H A Dfpm_main.c344 const char* msg; member
451 if (err->msg) { in sapi_cgi_send_headers()
452 …n = slprintf(buf, sizeof(buf), "Status: %d %s\r\n", SG(sapi_headers).http_response_code, err->msg); in sapi_cgi_send_headers()
/PHP-5.6/sapi/cli/
H A Dphp_cli.c1136 …zval *msg = zend_read_property(zend_exception_get_default(TSRMLS_C), EG(exception), "message", siz… in do_cli() local
1137 zend_printf("Exception: %s\n", Z_STRVAL_P(msg)); in do_cli()
H A Dphp_cli_server.c814 static void sapi_cli_server_log_message(char *msg TSRMLS_DC) /* {{{ */ in sapi_cli_server_log_message()
828 fprintf(stderr, "[%s] %s\n", buf, msg); in sapi_cli_server_log_message()
/PHP-5.6/sapi/cgi/
H A Dcgi_main.c356 const char* msg; member
463 if (err->msg) { in sapi_cgi_send_headers()
464 …n = slprintf(buf, sizeof(buf), "Status: %d %s\r\n", SG(sapi_headers).http_response_code, err->msg); in sapi_cgi_send_headers()
/PHP-5.6/
H A Dserver-tests.php596 function writemsg($msg) { argument
598 echo $msg;
/PHP-5.6/ext/imap/
H A Dphp_imap.c3296 long msg; in PHP_FUNCTION() local
3304 …if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rls", &streamind, &msg, &section, &section_l… in PHP_FUNCTION()
3310 if (!msg || msg < 1 || (unsigned) msg > imap_le_struct->imap_stream->nmsgs) { in PHP_FUNCTION()
3317 body=mail_body(imap_le_struct->imap_stream, msg, section); in PHP_FUNCTION()
/PHP-5.6/ext/phar/phar/
H A Dpharcommand.inc255 …$msg = "PEAR package PHP_Archive not installed: generated phar will require PHP's phar extension b…
257 self::notice($msg);
259 self::error($msg);
/PHP-5.6/ext/phar/
H A Dphar.c481 #define MAPPHAR_ALLOC_FAIL(msg) \ argument
486 spprintf(error, 0, msg, fname);\
490 #define MAPPHAR_FAIL(msg) \ argument
498 MAPPHAR_ALLOC_FAIL(msg)
/PHP-5.6/ext/ftp/tests/
H A Dserver.inc116 fputs($s, "666 bogus msg\r\n");
/PHP-5.6/ext/tidy/
H A Dtidy.c487 static void TIDY_CALL php_tidy_panic(ctmbstr msg) in php_tidy_panic() argument
490 …r_docref(NULL TSRMLS_CC, E_ERROR, "Could not allocate memory for tidy! (Reason: %s)", (char *)msg); in php_tidy_panic()
/PHP-5.6/ext/gd/libgd/
H A Dgd_interpolation.c2283 void gdDumpRect(const char *msg, gdRectPtr r) in gdDumpRect() argument
2285 printf("%s (%i, %i) (%i, %i)\n", msg, r->x, r->y, r->width, r->height); in gdDumpRect()
/PHP-5.6/ext/reflection/
H A Dphp_reflection.c93 #define _DO_THROW(msg) … argument
94 …zend_throw_exception(reflection_exception_ptr, msg, 0 TSRMLS_CC); …
/PHP-5.6/ext/fileinfo/tests/
H A Dmagic3283 # http://www.wx800.com/msg/download/irda/iMelody.pdf
19710 >8 short 5130 Network service msg file
19711 >8 short 5131 Network service msg file
19712 >8 short 5132 Async gateway login msg

Completed in 205 milliseconds

123456