HomeSort by relevance Sort by last modified time
    Searched defs:msg (Results 1 - 25 of 663) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /webstack/webstack/branches/CoolStack12Rtm/src/ruby-1.8.6/missing/
strerror.c 6 static char msg[50]; variable
15 sprintf(msg, "Unknown error (%d)", error);
16 return msg;
  /webstack/webstack/trunk/src/ruby-1.8.5/missing/
strerror.c 6 static char msg[50]; variable
15 sprintf(msg, "Unknown error (%d)", error);
16 return msg;
  /webstack/webstack/trunk/src/ruby-1.8.6/missing/
strerror.c 6 static char msg[50]; variable
15 sprintf(msg, "Unknown error (%d)", error);
16 return msg;
  /webstack/webstack/branches/CoolStack12Rtm/src/unixODBC-2.2.12/odbcinst/
SQLPostInstallerError.c 35 char *msg = lpszErrorMsg ? _single_string_alloc_and_copy( lpszErrorMsg ) : (char*)NULL; local
38 ret = SQLPostInstallerError( dwErrorCode, msg );
40 if ( msg )
41 free( msg );
  /webstack/webstack/trunk/src/unixODBC-2.2.12/odbcinst/
SQLPostInstallerError.c 35 char *msg = lpszErrorMsg ? _single_string_alloc_and_copy( lpszErrorMsg ) : (char*)NULL; local
38 ret = SQLPostInstallerError( dwErrorCode, msg );
40 if ( msg )
41 free( msg );
  /webstack/webstack/branches/CoolStack12Rtm/src/imap-2006c1/c-client/
ckp_a41.c 43 char *msg = NIL;
46 struct passwd *ret = (pw && !loginrestrictions (user,S_RLOGIN,NIL,&msg) &&
47 !authenticate (user,pass,&reenter,&msg)) ?
50 if (msg) fs_give ((void **) &msg);
42 char *msg = NIL; local
  /webstack/webstack/branches/CoolStack12Rtm/src/imap-2006c1/src/osdep/unix/
ckp_a41.c 43 char *msg = NIL;
46 struct passwd *ret = (pw && !loginrestrictions (user,S_RLOGIN,NIL,&msg) &&
47 !authenticate (user,pass,&reenter,&msg)) ?
50 if (msg) fs_give ((void **) &msg);
42 char *msg = NIL; local
  /webstack/webstack/branches/CoolStack12Rtm/src/openldap-2.3.30/servers/slapd/back-bdb/
error.c 26 void bdb_errcall( const char *pfx, char * msg )
28 void bdb_errcall( const DB_ENV *env, const char *pfx, const char * msg )
32 if ( msg[0] > 0x7f )
33 __etoa( msg );
35 Debug( LDAP_DEBUG_ANY, "bdb(%s): %s\n", pfx, msg, 0 );
39 void bdb_msgcall( const DB_ENV *env, const char *msg )
42 if ( msg[0] > 0x7f )
43 __etoa( msg );
45 Debug( LDAP_DEBUG_TRACE, "bdb: %s\n", msg, 0, 0 );
56 static char msg[1024] local
    [all...]
  /webstack/webstack/branches/CoolStack12Rtm/src/unixODBC-2.2.12/Drivers/nn/
SQLError.c 54 char* msg; local
56 msg = nnodbc_getsqlstatmsg(herr);
58 if ( !msg )
59 msg = nnodbc_getnativemsg( herr );
61 if ( !msg )
62 msg = "(null)";
64 sprintf(buf, NNODBC_ERRHEAD "%s", msg);
  /webstack/webstack/trunk/src/imap-2006c1/c-client/
ckp_a41.c 43 char *msg = NIL;
46 struct passwd *ret = (pw && !loginrestrictions (user,S_RLOGIN,NIL,&msg) &&
47 !authenticate (user,pass,&reenter,&msg)) ?
50 if (msg) fs_give ((void **) &msg);
42 char *msg = NIL; local
  /webstack/webstack/trunk/src/imap-2006c1/src/osdep/unix/
ckp_a41.c 43 char *msg = NIL;
46 struct passwd *ret = (pw && !loginrestrictions (user,S_RLOGIN,NIL,&msg) &&
47 !authenticate (user,pass,&reenter,&msg)) ?
50 if (msg) fs_give ((void **) &msg);
42 char *msg = NIL; local
  /webstack/webstack/trunk/src/openldap-2.3.30/servers/slapd/back-bdb/
error.c 26 void bdb_errcall( const char *pfx, char * msg )
28 void bdb_errcall( const DB_ENV *env, const char *pfx, const char * msg )
32 if ( msg[0] > 0x7f )
33 __etoa( msg );
35 Debug( LDAP_DEBUG_ANY, "bdb(%s): %s\n", pfx, msg, 0 );
39 void bdb_msgcall( const DB_ENV *env, const char *msg )
42 if ( msg[0] > 0x7f )
43 __etoa( msg );
45 Debug( LDAP_DEBUG_TRACE, "bdb: %s\n", msg, 0, 0 );
56 static char msg[1024] local
    [all...]
  /webstack/webstack/trunk/src/unixODBC-2.2.12/Drivers/nn/
SQLError.c 54 char* msg; local
56 msg = nnodbc_getsqlstatmsg(herr);
58 if ( !msg )
59 msg = nnodbc_getnativemsg( herr );
61 if ( !msg )
62 msg = "(null)";
64 sprintf(buf, NNODBC_ERRHEAD "%s", msg);
  /webstack/webstack/branches/CoolStack12Rtm/src/cyrus-sasl-2.1.22/saslauthd/
auth_dce.c 66 char *msg; /* response from authenticate() */
71 rc = authenticate(login, password, &reenter, &msg);
74 * Failed. authenticate() has allocated storage for msg. We have
82 if (msg == 0)
84 reply = malloc(strlen(msg) + sizeof("NO "));
86 if (msg != 0)
87 free(msg);
91 strcat(reply, msg);
92 free(msg);
95 if (msg != 0
65 char *msg; \/* response from authenticate() *\/ local
    [all...]
  /webstack/webstack/branches/CoolStack12Rtm/src/httpd-2.2.6/modules/proxy/
ajp_utils.c 26 ajp_msg_t *msg; local
34 rc = ajp_msg_create(r->pool, AJP_HEADER_SZ_LEN+1, &msg);
41 rc = ajp_msg_serialize_cping(msg);
48 rc = ajp_ilink_send(sock, msg);
69 ajp_msg_reuse(msg);
72 rv = ajp_ilink_receive(sock, msg);
79 rv = ajp_msg_get_uint8(msg, &result);
  /webstack/webstack/trunk/src/cyrus-sasl-2.1.22/saslauthd/
auth_dce.c 66 char *msg; /* response from authenticate() */
71 rc = authenticate(login, password, &reenter, &msg);
74 * Failed. authenticate() has allocated storage for msg. We have
82 if (msg == 0)
84 reply = malloc(strlen(msg) + sizeof("NO "));
86 if (msg != 0)
87 free(msg);
91 strcat(reply, msg);
92 free(msg);
95 if (msg != 0
65 char *msg; \/* response from authenticate() *\/ local
    [all...]
  /webstack/webstack/trunk/src/httpd-2.2.6/modules/proxy/
ajp_utils.c 26 ajp_msg_t *msg; local
34 rc = ajp_msg_create(r->pool, AJP_HEADER_SZ_LEN+1, &msg);
41 rc = ajp_msg_serialize_cping(msg);
48 rc = ajp_ilink_send(sock, msg);
69 ajp_msg_reuse(msg);
72 rv = ajp_ilink_receive(sock, msg);
79 rv = ajp_msg_get_uint8(msg, &result);
  /webstack/webstack/branches/CoolStack12Rtm/src/httpd-2.2.6/srclib/apr/test/
testshm.h 21 char msg[1024]; member in struct:mbox
30 #define MSG "Sending a message"
  /webstack/webstack/branches/CoolStack12Rtm/src/mysql-5.0.45/sql/
sql_error.h 24 char *msg; member in class:MYSQL_ERROR
37 uint code, const char *msg);
  /webstack/webstack/branches/CoolStack12Rtm/src/php-5.2.4/ext/com_dotnet/
com_olechar.c 57 char *msg = php_win_err(GetLastError()); local
60 "Could not convert string to unicode: `%s'", msg);
62 LocalFree(msg);
90 char *msg = php_win_err(err); local
93 "Could not convert string from unicode: `%s'", msg);
95 LocalFree(msg);
  /webstack/webstack/trunk/src/httpd-2.2.3/srclib/apr/test/
testshm.h 21 char msg[1024]; member in struct:mbox
30 #define MSG "Sending a message"
  /webstack/webstack/trunk/src/httpd-2.2.6/srclib/apr/test/
testshm.h 21 char msg[1024]; member in struct:mbox
30 #define MSG "Sending a message"
  /webstack/webstack/trunk/src/mysql-5.0.33.32bit/sql/
sql_error.h 25 char *msg; member in class:MYSQL_ERROR
38 uint code, const char *msg);
  /webstack/webstack/trunk/src/mysql-5.0.33.64bit/sql/
sql_error.h 25 char *msg; member in class:MYSQL_ERROR
38 uint code, const char *msg);
  /webstack/webstack/trunk/src/mysql-5.0.45/sql/
sql_error.h 24 char *msg; member in class:MYSQL_ERROR
37 uint code, const char *msg);

Completed in 5160 milliseconds

1 2 3 4 5 6 7 8 91011>>