/illumos-gate/usr/src/cmd/msgid/ |
H A D | msgid.c | 35 uint32_t msgid; local 39 STRLOG_MAKE_MSGID(msg, msgid); 40 (void) printf("%u %s", msgid, msg);
|
/illumos-gate/usr/src/stand/lib/sa/ |
H A D | libintl.c | 34 * pointer to the msgid. 38 dgettext(const char *domainname, const char *msgid) argument 40 return ((char *)msgid);
|
/illumos-gate/usr/src/cmd/oamuser/lib/ |
H A D | errmsg.c | 44 * synopsis: errmsg(msgid, (arg1, ..., argN)) 48 errmsg(int msgid, ...) argument 52 va_start(args, msgid); 54 if (msgid >= 0 && msgid < lasterrmsg) { 56 (void) vfprintf(stderr, errmsgs[ msgid ], args);
|
/illumos-gate/usr/src/lib/libldap5/sources/ldap/common/ |
H A D | abandon.c | 41 static int do_abandon( LDAP *ld, int origid, int msgid, 48 * msgid The message id of the operation to abandon 53 * ldap_abandon( ld, msgid ); 57 ldap_abandon( LDAP *ld, int msgid ) 59 LDAPDebug( LDAP_DEBUG_TRACE, "ldap_abandon %d\n", msgid, 0, 0 ); 61 if ( ldap_abandon_ext( ld, msgid, NULL, NULL ) == LDAP_SUCCESS ) { 75 ldap_abandon_ext( LDAP *ld, int msgid, LDAPControl **serverctrls, argument 80 LDAPDebug( LDAP_DEBUG_TRACE, "ldap_abandon_ext %d\n", msgid, 0, 0 ); 88 rc = do_abandon( ld, msgid, msgid, serverctrl 109 do_abandon( LDAP *ld, int origid, int msgid, LDAPControl **serverctrls, LDAPControl **clientctrls ) argument [all...] |
H A D | add.c | 57 * msgid = ldap_add( ld, dn, attrs ); 63 int msgid; local 67 if ( ldap_add_ext( ld, dn, attrs, NULL, NULL, &msgid ) 69 return( msgid ); 199 int err, msgid; local 203 &msgid )) != LDAP_SUCCESS ) { 207 if ( ldap_result( ld, msgid, 1, (struct timeval *)NULL, &res ) == -1 ) {
|
H A D | delete.c | 43 * msgid = ldap_delete( ld, dn ); 49 int msgid; local 53 if ( ldap_delete_ext( ld, dn, NULL, NULL, &msgid ) == LDAP_SUCCESS ) { 54 return( msgid ); 143 int err, msgid; local 147 &msgid )) != LDAP_SUCCESS ) { 151 if ( ldap_result( ld, msgid, 1, (struct timeval *)NULL, &res ) == -1 ) {
|
H A D | modify.c | 55 * msgid = ldap_modify( ld, dn, mods ); 61 int msgid; local 65 if ( ldap_modify_ext( ld, dn, mods, NULL, NULL, &msgid ) 67 return( msgid ); 200 int msgid, err; local 204 &msgid )) != LDAP_SUCCESS ) { 208 if ( ldap_result( ld, msgid, 1, (struct timeval *)NULL, &res ) == -1 ) {
|
H A D | sbind.c | 77 int rc, msgid; local 92 msgid = ++ld->ld_msgid; 107 rc = (ld->ld_cache_bind)( ld, msgid, LDAP_REQ_BIND, dn, &bv, 123 if ( ber_printf( ber, "{it{ists}", msgid, LDAP_REQ_BIND, 136 return( nsldapi_send_initial_request( ld, msgid, LDAP_REQ_BIND, 155 int msgid; local 165 if ( (msgid = ldap_simple_bind( ld, dn, passwd )) == -1 ) 168 if ( ldap_result( ld, msgid, 1, (struct timeval *) 0, &result ) == -1 ) 184 int msgid, rc; local 237 if ( (msgid [all...] |
H A D | compare.c | 43 * attr and value) are supplied. The msgid of the response is returned. 52 int msgid; local 60 if ( ldap_compare_ext( ld, dn, attr, &bv, NULL, NULL, &msgid ) 62 return( msgid ); 167 int err, msgid; local 171 clientctrls, &msgid )) != LDAP_SUCCESS ) { 175 if ( ldap_result( ld, msgid, 1, (struct timeval *)NULL, &res )
|
H A D | rename.c | 57 * rc = ldap_rename( ld, dn, newrdn, newparent, deleteoldrdn, serverctrls, clientctrls, &msgid ); 187 int msgid; local 189 if ( ldap_rename( ld, dn, newrdn, NULL, deleteoldrdn, NULL, NULL, &msgid ) == LDAP_SUCCESS ) { 190 return( msgid ); 215 int msgid; local 218 if ( ldap_rename( ld, dn, newrdn, newparent, deleteoldrdn, serverctrls, clientctrls, &msgid ) != LDAP_SUCCESS ) { 222 if ( msgid == -1 ) 225 if ( ldap_result( ld, msgid, 1, (struct timeval *) NULL, &res ) == -1 ) 235 int msgid; local 238 if ( (msgid [all...] |
H A D | unbind.c | 196 int err, msgid; local 208 msgid = ++ld->ld_msgid; 211 if ( ber_printf( ber, "{itn", msgid, LDAP_REQ_UNBIND ) == -1 ) {
|
H A D | extendop.c | 30 * int err, msgid; 32 * err = ldap_extended_operation( ld, exoid, &exdata, NULL, NULL, &msgid ); 47 int rc, msgid; local 82 msgid = ++ld->ld_msgid; 88 if ( (rc = (ld->ld_cache_extendedop)( ld, msgid, 104 if ( ber_printf( ber, "{it{tsto}", msgid, LDAP_REQ_EXTENDED, 120 rc = nsldapi_send_initial_request( ld, msgid, LDAP_REQ_EXTENDED, NULL, 151 int err, msgid; local 155 serverctrls, clientctrls, &msgid )) != LDAP_SUCCESS ) { 159 if ( ldap_result( ld, msgid, [all...] |
H A D | saslbind.c | 38 * int err, msgid; 42 * "mechanismname", &creds, ctrls, NULL, &msgid ); 57 int rc, simple, msgid, ldapversion; local 93 msgid = ++ld->ld_msgid; 101 if ( (rc = (ld->ld_cache_bind)( ld, msgid, LDAP_REQ_BIND, dn, 125 rc = ber_printf( ber, "{it{isto}", msgid, LDAP_REQ_BIND, 131 rc = ber_printf( ber, "{it{ist{s}}", msgid, 135 rc = ber_printf( ber, "{it{ist{so}}", msgid, 155 rc = nsldapi_send_initial_request( ld, msgid, LDAP_REQ_BIND, 185 int err, msgid; local [all...] |
H A D | search.c | 82 * msgid = ldap_search( ld, "c=us@o=UM", LDAP_SCOPE_SUBTREE, "cn~=bob", 96 int msgid; local 101 NULL, NULL, -1, &msgid ) == LDAP_SUCCESS ) { 102 return( msgid ); 280 int msgid, 332 err = ber_printf( ber, "{ist{seeiib", msgid, 337 err = ber_printf( ber, "{it{seeiib", msgid, 976 int err, msgid; local 993 serverctrls, clientctrls, timelimit, sizelimit, &msgid )) 1001 if ( ldap_result( ld, msgid, 269 nsldapi_build_search_req( LDAP *ld, const char *base, int scope, const char *filter, char **attrs, int attrsonly, LDAPControl **serverctrls, LDAPControl **clientctrls, int timelimit, int sizelimit, int msgid, BerElement **berp ) argument [all...] |
H A D | ufn.c | 451 int i, msgid; local 463 if (( msgid = ldap_search( ld, dn, scope, filter, attrs, 474 *err = ldap_result( ld, msgid, 1, &tv, &tmpres ); 477 ldap_abandon( ld, msgid );
|
H A D | url.c | 407 int err, msgid; local 423 msgid = ++ld->ld_msgid; 428 -1, -1, msgid, &ber ) != LDAP_SUCCESS ) { 471 err = nsldapi_send_server_request( ld, ber, msgid, NULL, srv, 485 int msgid; local 501 if (( msgid = ldap_url_search( ld, url, attrsonly )) == -1 ) { 505 if ( ldap_result( ld, msgid, 1, timeout, res ) == -1 ) { 510 (void) ldap_abandon( ld, msgid ); 523 int msgid; local 525 if (( msgid [all...] |
/illumos-gate/usr/src/cmd/saf/ |
H A D | log.c | 123 * args: msgid - id of message to be output 129 error(int msgid, int action) argument 131 if (msgid < 0 || msgid > N_msgs) 133 log(Msgs[msgid].e_str); 136 exit(Msgs[msgid].e_exitcode);
|
/illumos-gate/usr/src/cmd/genmsg/ |
H A D | genmsg.y | 61 %type <id> cast_setid, setid, cast_msgid, msgid, cast_digit, digit 145 cast_msgid: '(' INT ')' msgid { $$ = $4; } 146 | '(' CONST INT ')' msgid { $$ = $5; } 147 | msgid 150 msgid: msgid '+' msgid { $$ = $1 + $3; } label 151 | msgid '-' msgid { $$ = $1 - $3; } 152 | msgid '*' msgi [all...] |
/illumos-gate/usr/src/cmd/gettext/ |
H A D | gettext.c | 90 "[domain] \"msgid\"\n" \ 92 "\"msgid\" ...\n" 103 char *domainpath, *msgid; local 229 msgid = expand_metas(*argv); 230 (void) fputs(dgettext(domain, msgid), stdout); 242 msgid = expand_metas(*argv++); 244 msgid = *argv++; 245 (void) fputs(domain ? dgettext(domain, msgid) : msgid,
|
/illumos-gate/usr/src/uts/intel/io/ipmi/ |
H A D | ipmi.c | 58 ipmi_alloc_request(struct ipmi_device *dev, long msgid, uint8_t addr, argument 67 req->ir_msgid = msgid;
|
/illumos-gate/usr/src/cmd/msgfmt/ |
H A D | sun_msgfmt.h | 56 #define MSGID_TOKEN L"msgid" /* msg id token in po file */ 77 char *msgid; /* msg id string */ member in struct:msg_chain
|
H A D | gnu_check.c | 287 char *msgid, *plural, *msgstr; local 304 msgid = id->str; 313 plural = msgid + plural_off; 328 id_b_newline = (msgid[0] == '\n'); 329 id_e_newline = (msgid[id_len - 1 - 1] == '\n'); 353 id_b_newline = (msgid[0] == '\n'); 354 id_e_newline = (msgid[id_len - 1 - 1] == '\n'); 359 /* between msgid and msgid_plural */ 417 id_fmt = extract_format(id_norm, msgid, osz); 484 /* between msgid an [all...] |
/illumos-gate/usr/src/lib/gss_mechs/mech_krb5/et/ |
H A D | com_err.c | 82 char *msgid; member in struct:msg_map 132 char *msgid = msgmap[msg_idx].msgid; local 134 char *msgstr = dgettext(TEXT_DOMAIN, msgid); 136 if (strcmp(msgstr, msgid) == 0)
|
/illumos-gate/usr/src/lib/libsldap/common/ |
H A D | ns_wrapper.c | 44 int msgid, LDAPControl **serverctrls, 49 return (ldap_abandon_ext(ld, msgid, serverctrls, clientctrls)); 54 int msgid) 58 return (ldap_abandon(ld, msgid)); 303 int msgid, int all, 308 return (ldap_result(ld, msgid, all, timeout, result)); 43 _ns_ldap_abandon_ext(char *service, int flags, int msgid, LDAPControl **serverctrls, LDAPControl ** clientctrls) argument 53 _ns_ldap_abandon(char *service, int flags, int msgid) argument 302 _ns_ldap_result(char *service, int flags, int msgid, int all, struct timeval *timeout, LDAPMessage **result) argument
|
/illumos-gate/usr/src/lib/libzfs/common/ |
H A D | libzfs_status.c | 362 zpool_get_status(zpool_handle_t *zhp, char **msgid) argument 367 *msgid = NULL; 369 *msgid = zfs_msgid_table[ret]; 375 zpool_import_status(nvlist_t *config, char **msgid) argument 380 *msgid = NULL; 382 *msgid = zfs_msgid_table[ret];
|