Home
last modified time | relevance | path

Searched refs:text (Results 1 – 25 of 776) sorted by relevance

12345678910>>...32

/titanic_41/usr/src/lib/sasl_plugins/gssapi/
H A Dgssapi.c187 #define sasl_gss_log(x,y,z) sasl_gss_seterror_(text,y,z,1)
188 #define sasl_gss_seterror(x,y,z) sasl_gss_seterror_(text,y,z,0)
190 sasl_gss_seterror_(const context_t *text, OM_uint32 maj, OM_uint32 min, in sasl_gss_seterror_() argument
204 const sasl_utils_t *utils = text->utils; in sasl_gss_seterror_()
223 GSS_C_GSS_CODE, text->mech_oid, in sasl_gss_seterror_()
231 utils->log(text->utils->conn, SASL_LOG_FAIL, in sasl_gss_seterror_()
285 GSS_C_MECH_CODE, text->mech_oid,
293 utils->log(text->utils->conn, SASL_LOG_FAIL,
343 utils->log(text->utils->conn, SASL_LOG_FAIL, out);
357 context_t *text = (context_t *)context; in sasl_gss_encode() local
[all …]
/titanic_41/usr/src/lib/sasl_plugins/digestmd5/
H A Ddigestmd5.c749 static int dec_3des(context_t *text, argument
756 des_context_t *c = (des_context_t *) text->cipher_dec_context;
789 static int enc_3des(context_t *text, argument
796 des_context_t *c = (des_context_t *) text->cipher_enc_context;
823 static int init_3des(context_t *text, argument
831 c = (des_context_t *) text->utils->malloc(2 * sizeof(des_context_t));
844 text->cipher_enc_context = (cipher_context_t *) c;
858 text->cipher_dec_context = (cipher_context_t *) c;
870 static int dec_des(context_t *text, argument
877 des_context_t *c = (des_context_t *) text->cipher_dec_context;
[all …]
/titanic_41/usr/src/lib/libdtrace/i386/
H A Ddt_isadep.c81 uint8_t *text, fasttrap_probe_spec_t *ftp, const GElf_Sym *symp) in dt_pid_has_jump_table() argument
94 size = dt_instr_size(&text[i], dtp, pid, symp->st_value + i, in dt_pid_has_jump_table()
110 if ((text[i] == 0xff && DT_MODRM_REG(text[i + 1]) == 4) || in dt_pid_has_jump_table()
111 (dmodel == PR_MODEL_LP64 && (text[i] & 0xf0) == 0x40 && in dt_pid_has_jump_table()
112 text[i + 1] == 0xff && DT_MODRM_REG(text[i + 2]) == 4)) { in dt_pid_has_jump_table()
127 uint8_t *text; in dt_pid_create_return_probe() local
137 if ((text = calloc(1, symp->st_size + 4)) == NULL) { in dt_pid_create_return_probe()
142 if (Pread(P, text, symp->st_size, symp->st_value) != symp->st_size) { in dt_pid_create_return_probe()
144 free(text); in dt_pid_create_return_probe()
166 if (dt_pid_has_jump_table(P, dtp, text, ftp, symp)) { in dt_pid_create_return_probe()
[all …]
/titanic_41/usr/src/lib/libdtrace/sparc/
H A Ddt_isadep.c76 uint32_t *text; in dt_pid_create_return_probe() local
80 if ((text = malloc(symp->st_size + 4)) == NULL) { in dt_pid_create_return_probe()
85 if (Pread(P, text, symp->st_size, symp->st_value) != symp->st_size) { in dt_pid_create_return_probe()
87 free(text); in dt_pid_create_return_probe()
95 text[symp->st_size / 4] = 0; in dt_pid_create_return_probe()
108 while (text[i] == FASTTRAP_INSTR) { in dt_pid_create_return_probe()
118 if (Pread(P, &text[i], 4, in dt_pid_create_return_probe()
122 free(text); in dt_pid_create_return_probe()
128 free(text); in dt_pid_create_return_probe()
134 text[i] = instr.ftiq_instr; in dt_pid_create_return_probe()
[all …]
/titanic_41/usr/src/lib/sasl_plugins/login/
H A Dlogin.c89 server_context_t *text; in login_server_mech_new() local
92 text = sparams->utils->malloc(sizeof(server_context_t)); in login_server_mech_new()
93 if (text == NULL) { in login_server_mech_new()
98 memset(text, 0, sizeof(server_context_t)); in login_server_mech_new()
100 text->state = 1; in login_server_mech_new()
102 *conn_context = text; in login_server_mech_new()
118 server_context_t *text = (server_context_t *) conn_context; in login_server_mech_step() local
123 switch (text->state) { in login_server_mech_step()
126 text->state = 2; in login_server_mech_step()
153 text->username = in login_server_mech_step()
[all …]
/titanic_41/usr/src/cmd/cmd-inet/usr.bin/talk/
H A Ddisplay.c81 display(win, text, size) in display() argument
83 register char *text;
92 if (*text == '\n'|| *text == '\r') {
94 text++;
100 if (*text == win->cerase) {
106 text++;
114 if (*text == win->werase) {
139 if (*text == win->kill) {
143 text++;
146 if (*text == '\f') {
[all …]
/titanic_41/usr/src/cmd/krb5/kadmin/gui/visualrt/sunsoft/jws/visual/rt/awt/
H A DStatusBar.java50 private String text; field in StatusBar
54 public StatusBar(String text) { in StatusBar() argument
73 public void setText(String text) { in setText() argument
74 setText(text, true); in setText()
77 public void setText(String text, boolean shouldTimeout) { in setText() argument
78 if (text != this.text && (this.text == null || in setText()
79 !this.text.equals(text))) { in setText()
80 this.text = text; in setText()
88 return text; in getText()
102 if (text != null) { in paint()
[all …]
H A DEditLine.java58 private String text; field in EditLine
89 public EditLine(Component comp, String text, int textX, int textY) { in EditLine() argument
90 if (text == null) in EditLine()
91 text = /* NOI18N */""; in EditLine()
94 this.text = text; in EditLine()
97 this.initText = text; in EditLine()
100 cursorPos = text.length(); in EditLine()
116 public void setText(String text) { in setText() argument
117 if (text == null) in setText()
118 text = /* NOI18N */""; in setText()
[all …]
H A DCLComponent.java42 protected String text; field in CLComponent
45 public CLComponent(String text) { in CLComponent() argument
46 setText(text); in CLComponent()
56 public void setText(String text) { in setText() argument
57 setText(text, true); in setText()
60 public void setText(String text, boolean update) { in setText() argument
61 this.text = text; in setText()
70 return text; in getText()
82 return text; in toString()
/titanic_41/usr/src/lib/sasl_plugins/cram/
H A Dcram.c119 server_context_t *text; in crammd5_server_mech_new() local
122 text = sparams->utils->malloc(sizeof(server_context_t)); in crammd5_server_mech_new()
123 if (text == NULL) { in crammd5_server_mech_new()
128 memset(text, 0, sizeof(server_context_t)); in crammd5_server_mech_new()
130 text->state = 1; in crammd5_server_mech_new()
132 *conn_context = text; in crammd5_server_mech_new()
192 crammd5_server_mech_step1(server_context_t *text, in crammd5_server_mech_step1() argument
222 text->challenge = sparams->utils->malloc(200 + 1); in crammd5_server_mech_step1()
223 if (text->challenge == NULL) { in crammd5_server_mech_step1()
229 snprintf(text->challenge, 200, "<%s.%s@%s>", randdigits, time, in crammd5_server_mech_step1()
[all …]
/titanic_41/usr/src/lib/libsasl/lib/
H A Dexternal.c243 client_context_t *text; in external_client_mech_new() local
255 text = params->utils->malloc(sizeof(client_context_t)); in external_client_mech_new()
257 text = sasl_ALLOC(sizeof(client_context_t)); in external_client_mech_new()
259 if(!text) return SASL_NOMEM; in external_client_mech_new()
261 memset(text, 0, sizeof(client_context_t)); in external_client_mech_new()
263 *conn_context = text; in external_client_mech_new()
278 client_context_t *text = (client_context_t *)conn_context; in external_client_mech_step() local
320 _plug_make_prompts(params->utils, &text->h, prompt_need, in external_client_mech_step()
322 convert_prompt(params->utils, &text->h, in external_client_mech_step()
343 result = _plug_buf_alloc(params->utils, &text->out_buf, in external_client_mech_step()
[all …]
/titanic_41/usr/src/uts/common/io/scsi/adapters/iscsi/
H A Discsi_login.c1066 char *text = data; in iscsi_process_login_response() local
1087 end = text + ntoh24(ilrhp->dlength) + 1; in iscsi_process_login_response()
1152 while (text && (text < end)) { in iscsi_process_login_response()
1159 while ((text < end) && (*text == '\0')) { in iscsi_process_login_response()
1160 text++; in iscsi_process_login_response()
1162 if (text >= end) { in iscsi_process_login_response()
1178 text, end, &value, &value_end)) { in iscsi_process_login_response()
1192 text = value_end; in iscsi_process_login_response()
1195 text, end, &value, &value_end)) { in iscsi_process_login_response()
1203 text = value_end; in iscsi_process_login_response()
[all …]
/titanic_41/usr/src/cmd/cmd-inet/usr.lib/in.chargend/
H A Din.chargend.c68 char text[LINESIZE+2]; in chargen_stream() local
80 dp = text; in chargen_stream()
97 if (safe_write(s, text, dp - text) != 0) in chargen_stream()
107 char text[LINESIZE+2]; in chargen_dg() local
116 (void) memmove(text, rp, i); in chargen_dg()
120 (void) memmove(text, rp, i); in chargen_dg()
125 text[LINESIZE - 2] = '\r'; in chargen_dg()
126 text[LINESIZE - 1] = '\n'; in chargen_dg()
128 (void) safe_sendto(s, text, sizeof (text), 0, sap, sa_size); in chargen_dg()
/titanic_41/usr/src/lib/libbsm/common/
H A Daudit_plugin.c101 __audit_dowarn(char *option, char *text, int count) in __audit_dowarn() argument
119 if (text == NULL) in __audit_dowarn()
120 text = empty; in __audit_dowarn()
123 (void) execl(auditwarn, auditwarn, option, text, 0); in __audit_dowarn()
128 (void) execl(auditwarn, auditwarn, option, text, countstr, 0); in __audit_dowarn()
136 gettext("soft limit in %s.\n"), text); in __audit_dowarn()
139 gettext("hard limit in %s.\n"), text); in __audit_dowarn()
167 __audit_dowarn2(char *option, char *name, char *error, char *text, int count) in __audit_dowarn2() argument
186 if ((text == NULL) || (*text == '\0')) in __audit_dowarn2()
187 text = empty; in __audit_dowarn2()
[all …]
/titanic_41/usr/src/cmd/auditrecord/
H A Dmkmsg.pl127 my @text = @_;
129 my $text;
130 foreach $text (@text) {
131 next if ($text =~ /^$/);
132 $text =~ s/&colon;/:/g;
133 $translateText{$text} = 1;
144 my $text;
150 foreach $text (sort keys %translateText) {
151 $text =~ s/"/\\"/g;
152 print Message "msgid \"$text\"\nmsgstr\n";
/titanic_41/usr/src/lib/sasl_plugins/plain/
H A Dplain.c286 client_context_t *text; in plain_client_mech_new() local
289 text = params->utils->malloc(sizeof(client_context_t)); in plain_client_mech_new()
290 if (text == NULL) { in plain_client_mech_new()
295 memset(text, 0, sizeof(client_context_t)); in plain_client_mech_new()
297 *conn_context = text; in plain_client_mech_new()
311 client_context_t *text = (client_context_t *) conn_context; in plain_client_mech_step() local
372 _plug_make_prompts(params->utils, &text->h, prompt_need, in plain_client_mech_step()
374 convert_prompt(params->utils, &text->h, in plain_client_mech_step()
379 convert_prompt(params->utils, &text->h, in plain_client_mech_step()
384 convert_prompt(params->utils, &text->h, in plain_client_mech_step()
[all …]
/titanic_41/usr/src/cmd/mail/
H A Dcopymt.c61 let[0].text = TRUE; /* until proven otherwise.... */
79 if (let[nlet-1].text == TRUE) {
80 let[nlet-1].text = istext((unsigned char*)line,clen);
83 (let[nlet-1].text ? "TRUE":"FALSE"));
105 if (let[nlet-1].text == TRUE) {
106 let[nlet-1].text = istext((unsigned char*)line,n);
109 (let[nlet-1].text ? "TRUE" : "FALSE"));
151 let[nlet].text = TRUE;
177 if (let[nlet-1].text == TRUE) {
178 let[nlet-1].text = istext((unsigned char*)line,n);
[all …]
/titanic_41/usr/src/cmd/powertop/common/
H A Dsuggestions.c66 pt_sugg_add(char *text, int weight, char key, char *sb_msg, sugg_func_t *func) in pt_sugg_add() argument
73 if (text == NULL) in pt_sugg_add()
86 if (text != NULL) in pt_sugg_add()
87 new->text = strdup(text); in pt_sugg_add()
99 if (strcmp(n->text, text) == 0) in pt_sugg_add()
114 new->text = strdup(text); in pt_sugg_add()
194 if (n->text != NULL) in pt_sugg_remove()
241 if (g_curr_sugg->text != NULL) in pt_sugg_pick()
250 pt_display_suggestions(n->text); in pt_sugg_pick()
/titanic_41/usr/src/cmd/print/printmgr/com/sun/admin/pm/client/
H A DpmHelpContent.java35 private String text; field in pmHelpContent
38 text = content; in pmHelpContent()
42 text = new String(other.text); in pmHelpContent()
46 return text; in toString()
50 return text; in getText()
/titanic_41/usr/src/cmd/bnu/
H A Duucleanup.c361 char text[BUFSIZ]; local
365 (void) sprintf(text, "xprocess: unlink(%s)", fullname);
368 logit(text, errno);
389 char text[BUFSIZ], text1[BUFSIZ], text2[BUFSIZ]; local
411 (void) sprintf(text, "dDprocess: dummy C. unlinked(%s)",
415 logit(text, errno);
425 (void) sprintf(text, "cprocess: Bad C. %s, unlink(%s)",
430 *text = NULLCHAR;
457 if (!*text) {
458 (void) sprintf(text,
[all …]
/titanic_41/usr/src/cmd/eqn/
H A De.y121 fwd : FWD text { $$ = atoi((char *) $1); } ;
122 up : UP text { $$ = atoi((char *) $1); } ;
123 back : BACK text { $$ = atoi((char *) $1); } ;
124 down : DOWN text { $$ = atoi((char *) $1); } ;
146 left : LEFT text { $$ = ((char *)$2)[0]; }
150 right : RIGHT text { $$ = ((char *)$2)[0]; }
164 size : SIZE text { $$ = ps; setsize((char *) $2); }
170 | FONT text { setfont(((char *)$2)[0]); }
180 | QTEXT { text(QTEXT, (char *) $1); }
181 | CONTIG { text(CONTIG, (char *) $1); }
[all …]
/titanic_41/usr/src/lib/libresolv2/common/irs/
H A Dirp_nw.c149 char text[256]; in nw_byaddr() local
164 text, sizeof text, in nw_byaddr()
197 char text[256]; in nw_byname() local
213 text, sizeof text, in nw_byname()
242 char text[256]; in nw_rewind() local
253 code = irs_irp_read_response(pvt->girpdata, text, sizeof text); in nw_rewind()
256 syslog(LOG_WARNING, "setnetent failed: %s", text); in nw_rewind()
275 char text[256]; in nw_next() local
286 text, sizeof text, in nw_next()
H A Dirp_pr.c138 char text[256]; in pr_byname() local
153 text, sizeof text, in pr_byname()
187 char text[256]; in pr_bynumber() local
202 text, sizeof text, in pr_bynumber()
231 char text[256]; in pr_rewind() local
242 code = irs_irp_read_response(pvt->girpdata, text, sizeof text); in pr_rewind()
245 syslog(LOG_WARNING, "setprotoent failed: %s", text); in pr_rewind()
264 char text[256]; in pr_next() local
275 text, sizeof text, in pr_next()
H A Dirp_sv.c142 char text[256]; in sv_next() local
153 text, sizeof text, in sv_next()
185 char text[256]; in sv_byname() local
204 text, sizeof text, in sv_byname()
237 char text[256]; in sv_byport() local
256 text, sizeof text, in sv_byport()
285 char text[256]; in sv_rewind() local
296 code = irs_irp_read_response(pvt->girpdata, text, sizeof text); in sv_rewind()
299 syslog(LOG_WARNING, "setservent failed: %s", text); in sv_rewind()
H A Dirp_ng.c129 char text[256]; in ng_rewind() local
141 code = irs_irp_read_response(pvt->girpdata, text, sizeof text); in ng_rewind()
145 group, text); in ng_rewind()
166 char text[256]; in ng_next() local
176 text, sizeof text, in ng_next()
207 char text[256]; in ng_test() local
221 code = irs_irp_read_response(pvt->girpdata, text, sizeof text); in ng_test()

12345678910>>...32