Home
last modified time | relevance | path

Searched refs:msg (Results 76 – 100 of 195) sorted by relevance

12345678

/PHP-7.3/sapi/phpdbg/
H A Dphpdbg_parser.y20 static int yyerror(const char *msg);
176 static int yyerror(const char *msg) {
177 phpdbg_error("command", "type=\"parseerror\" msg=\"%s\"", "Parse Error: %s", msg);
/PHP-7.3/ext/com_dotnet/
H A Dcom_variant.c478 char *werr, *msg; in PHP_FUNCTION() local
484 php_com_throw_exception(res, msg); in PHP_FUNCTION()
485 efree(msg); in PHP_FUNCTION()
1066 char *werr, *msg; in PHP_FUNCTION() local
1069 spprintf(&msg, 0, "Variant type conversion failed: %s", werr); in PHP_FUNCTION()
1072 php_com_throw_exception(res, msg); in PHP_FUNCTION()
1073 efree(msg); in PHP_FUNCTION()
1100 char *werr, *msg; in PHP_FUNCTION() local
1103 spprintf(&msg, 0, "Variant type conversion failed: %s", werr); in PHP_FUNCTION()
1106 php_com_throw_exception(res, msg); in PHP_FUNCTION()
[all …]
/PHP-7.3/ext/sockets/
H A Dsendrecvmsg.c42 inline ssize_t recvmsg(int sockfd, struct msghdr *msg, int flags) in recvmsg() argument
57 msg->dwFlags = (DWORD)flags; in recvmsg()
58 return WSARecvMsg((SOCKET)sockfd, msg, &recvd, NULL, NULL) == 0 in recvmsg()
62 inline ssize_t sendmsg(int sockfd, const struct msghdr *msg, int flags) in sendmsg() argument
65 return WSASendMsg((SOCKET)sockfd, (struct msghdr*)msg, (DWORD)flags, &sent, NULL, NULL) == 0 in sendmsg()
H A Dconversions.c201 if (err->msg != NULL) { in err_msg_dispose()
204 efree(err->msg); in err_msg_dispose()
919 struct msghdr *msg = (struct msghdr*)msghdr_c; in from_zval_write_control_array() local
952 msg->msg_control = control_buf; in from_zval_write_control_array()
1016 for (cmsg = CMSG_FIRSTHDR(msg); in to_zval_read_control_array()
1018 cmsg = CMSG_NXTHDR(msg, cmsg)) { in to_zval_read_control_array()
1079 struct msghdr *msg = args[0]; in from_zval_write_iov_array_aux() local
1085 msg->msg_iov[i - 1].iov_len = ZSTR_LEN(str); in from_zval_write_iov_array_aux()
1093 struct msghdr *msg = (struct msghdr*)msghdr_c; in from_zval_write_iov_array() local
1105 msg->msg_iov = accounted_safe_ecalloc(num_elem, sizeof *msg->msg_iov, 0, ctx); in from_zval_write_iov_array()
[all …]
/PHP-7.3/ext/spl/tests/
H A Diterator_042.phpt6 function test_error_handler($errno, $msg, $filename, $linenum)
8 echo "Error $msg in $filename on line $linenum\n";
/PHP-7.3/ext/curl/tests/
H A Dbug77535.phpt52 while (false !== $info && $info['msg'] == CURLMSG_DONE) {
53 if (CURLMSG_DONE !== $info['msg']) {
/PHP-7.3/ext/enchant/
H A Denchant.c395 char *msg; in PHP_FUNCTION() local
403 msg = enchant_broker_get_error(pbroker->pbroker); in PHP_FUNCTION()
404 if (msg) { in PHP_FUNCTION()
405 RETURN_STRING((char *)msg); in PHP_FUNCTION()
885 char *msg; in PHP_FUNCTION() local
893 msg = enchant_dict_get_error(pdict->pdict); in PHP_FUNCTION()
894 if (msg) { in PHP_FUNCTION()
895 RETURN_STRING((char *)msg); in PHP_FUNCTION()
/PHP-7.3/ext/imap/tests/
H A Dimap_fetchbody_variation6.phpt15 * Pass different integers, strings, msg sequences and msg UIDs as $msg_no argument
H A Dimap_fetchheader_variation5.phpt66 Subject: Test msg 1
77 Subject: Test msg 1
H A Dimap_include.inc140 $msg = "From: foo@anywhere.com\r\n"
148 $envelope["subject"] = "Test msg $i";
173 $msg = imap_mail_compose($envelope, $body);
176 imap_append($imap_stream, $mailbox, $msg);
H A Dimap_clearflag_full_basic.phpt25 echo "Initial msg count in new_mailbox : ". $check->Nmsgs . "\n";
60 Initial msg count in new_mailbox : 10
/PHP-7.3/ext/pdo_dblib/
H A Ddblib_driver.c42 char *msg; in dblib_fetch_error() local
50 msg = einfo->lastmsg; in dblib_fetch_error()
52 msg = DBLIB_G(err).lastmsg; in dblib_fetch_error()
55 msg = einfo->dberrstr; in dblib_fetch_error()
59 if (msg == NULL && einfo->dberr == 0 && einfo->oserr == 0 && einfo->severity == 0) { in dblib_fetch_error()
64 msg, einfo->dberr, einfo->severity, stmt ? stmt->active_query_string : ""); in dblib_fetch_error()
/PHP-7.3/ext/opcache/Optimizer/
H A Dzend_dump.h33 void zend_dump_op_array(const zend_op_array *op_array, uint32_t dump_flags, const char *msg, const …
/PHP-7.3/Zend/tests/
H A Dbug29896.phpt5 function userErrorHandler($num, $msg, $file, $line, $vars)
/PHP-7.3/ext/sodium/tests/
H A Dcrypto_shorthash.phpt14 $m2 = 'msg';
/PHP-7.3/ext/ftp/tests/
H A Dbug37799.phpt22 Warning: ftp_login(): %rdummy|bogus msg%r in %sbug37799.php on line 8
/PHP-7.3/ext/sockets/tests/
H A Dsocket_cmsg_credentials.phpt45 $r = socket_sendto($sends1, $msg = "dread", strlen($msg), 0, $path);
/PHP-7.3/main/
H A Dphp.h351 #define php_log_err(msg) php_log_err_with_severity(msg, LOG_NOTICE) argument
353 #define php_log_err(msg) php_log_err_with_severity(msg, 5) argument
/PHP-7.3/ext/soap/interop/
H A Dtest.utility.php119 function parseMessage($msg) argument
123 $response = new SOAP_Parser($msg);
/PHP-7.3/ext/sysvmsg/tests/
H A D005.phpt29 var_dump(msg_receive($q, 0, $null, 1, $msg, true, 0, $errno));
32 var_dump(msg_receive($q, 0, $null, 0, $msg));
H A D002.phpt12 var_dump($res = msg_receive ($queue, 1, $msg_type, 16384, $msg, true, 0, $msg_error));
/PHP-7.3/ext/mysqli/tests/
H A Dbug53503.phpt12 if ($msg = check_local_infile_support($link, $engine))
13 die(sprintf("skip %s, [%d] %s", $msg, $link->errno, $link->error));
/PHP-7.3/win32/
H A Dsendmail.h45 static int Post(LPCSTR msg);
/PHP-7.3/ext/opcache/
H A Dshared_alloc_win32.c44 static void zend_win_error_message(int type, char *msg, int err) in zend_win_error_message() argument
63 ev_msgs[0] = msg; in zend_win_error_message()
78 zend_accel_error(type, "%s", msg); in zend_win_error_message()
/PHP-7.3/ext/fileinfo/libmagic/
H A Dcompress.c485 strlcpy((char *)*newch, z.msg ? z.msg : zError(rc), bytes_max); in uncompresszlib()
494 char *msg; in makeerror() local
499 rv = vasprintf(&msg, fmt, ap); in makeerror()
506 *buf = (unsigned char *)msg; in makeerror()
507 *len = strlen(msg); in makeerror()

Completed in 56 milliseconds

12345678