Symbol: newstr
usr/src/cmd/audio/utilities/AudioHdrParse.cc
44
unsigned char *newstr;
usr/src/cmd/audio/utilities/AudioHdrParse.cc
48
newstr = new unsigned char [strlen(str) + 1];
usr/src/cmd/audio/utilities/AudioHdrParse.cc
51
newstr[i] = tolower(oldstr[i]);
usr/src/cmd/audio/utilities/AudioHdrParse.cc
53
newstr[i] = oldstr[i];
usr/src/cmd/audio/utilities/AudioHdrParse.cc
57
return ((char *)newstr);
usr/src/cmd/boot/bootadm/bootadm_hyper.c
1022
char *newstr;
usr/src/cmd/boot/bootadm/bootadm_hyper.c
1133
newstr = modify_path(kern_path, HYPER_KERNEL_DIR, METAL_KERNEL_DIR);
usr/src/cmd/boot/bootadm/bootadm_hyper.c
1135
kern_path = newstr;
usr/src/cmd/boot/bootadm/bootadm_hyper.c
1175
newstr = append_str(kernel, BFLAG, " ");
usr/src/cmd/boot/bootadm/bootadm_hyper.c
1177
kernel = append_str(newstr, "console=", " ");
usr/src/cmd/boot/bootadm/bootadm_hyper.c
1178
free(newstr);
usr/src/cmd/boot/bootadm/bootadm_hyper.c
1179
newstr = append_str(kernel, console_dev, "");
usr/src/cmd/boot/bootadm/bootadm_hyper.c
1181
kernel = newstr;
usr/src/cmd/boot/bootadm/bootadm_hyper.c
1184
newstr = append_str(kernel, "console=", ",");
usr/src/cmd/boot/bootadm/bootadm_hyper.c
1186
kernel = append_str(newstr, console_dev, "");
usr/src/cmd/boot/bootadm/bootadm_hyper.c
1187
free(newstr);
usr/src/cmd/boot/bootadm/bootadm_hyper.c
1200
newstr = append_str(kernel, BFLAG, " ");
usr/src/cmd/boot/bootadm/bootadm_hyper.c
1202
kernel = newstr;
usr/src/cmd/boot/bootadm/bootadm_hyper.c
1209
newstr = append_str(kernel, "ttya-mode='", delim);
usr/src/cmd/boot/bootadm/bootadm_hyper.c
1218
kernel = append_str(newstr, "'", serial_config[0]);
usr/src/cmd/boot/bootadm/bootadm_hyper.c
1219
free(newstr);
usr/src/cmd/boot/bootadm/bootadm_hyper.c
1225
newstr = append_str(kernel, "ttyb-mode='", delim);
usr/src/cmd/boot/bootadm/bootadm_hyper.c
1234
kernel = append_str(newstr, "'", serial_config[1]);
usr/src/cmd/boot/bootadm/bootadm_hyper.c
1235
free(newstr);
usr/src/cmd/boot/bootadm/bootadm_hyper.c
69
char *newstr;
usr/src/cmd/boot/bootadm/bootadm_hyper.c
763
char *newstr;
usr/src/cmd/boot/bootadm/bootadm_hyper.c
84
if ((newstr = malloc(len)) == NULL) {
usr/src/cmd/boot/bootadm/bootadm_hyper.c
89
(void) snprintf(newstr, len, "%s%s%s", orig, delim, str);
usr/src/cmd/boot/bootadm/bootadm_hyper.c
90
return (newstr);
usr/src/cmd/boot/bootadm/bootadm_hyper.c
904
newstr = append_str(kern_bargs, serial_config[0], " ");
usr/src/cmd/boot/bootadm/bootadm_hyper.c
906
kern_bargs = newstr;
usr/src/cmd/boot/bootadm/bootadm_hyper.c
910
newstr = append_str(kern_bargs, serial_config[1], " ");
usr/src/cmd/boot/bootadm/bootadm_hyper.c
912
kern_bargs = newstr;
usr/src/cmd/boot/bootadm/bootadm_hyper.c
917
newstr = append_str(kern_bargs, extra_args, " ");
usr/src/cmd/boot/bootadm/bootadm_hyper.c
919
kern_bargs = newstr;
usr/src/cmd/boot/bootadm/bootadm_hyper.c
946
newstr = modify_path(kern_path, METAL_KERNEL_DIR,
usr/src/cmd/boot/bootadm/bootadm_hyper.c
949
kern_path = newstr;
usr/src/cmd/cmd-inet/usr.bin/rcp.c
1051
char *newstr = str;
usr/src/cmd/cmd-inet/usr.bin/rcp.c
1054
newstr = str + 1;
usr/src/cmd/cmd-inet/usr.bin/rcp.c
1057
return (newstr);
usr/src/cmd/cmd-inet/usr.bin/tftp/main.c
839
char *newstr = str;
usr/src/cmd/cmd-inet/usr.bin/tftp/main.c
842
newstr = str + 1;
usr/src/cmd/cmd-inet/usr.bin/tftp/main.c
845
return (newstr);
usr/src/cmd/cmd-inet/usr.lib/pppoe/options.c
210
char *newstr;
usr/src/cmd/cmd-inet/usr.lib/pppoe/options.c
214
newstr = (char *)malloc(strlen(str) + 1);
usr/src/cmd/cmd-inet/usr.lib/pppoe/options.c
215
if (newstr != NULL)
usr/src/cmd/cmd-inet/usr.lib/pppoe/options.c
216
(void) strcpy(newstr, str);
usr/src/cmd/cmd-inet/usr.lib/pppoe/options.c
217
return (newstr);
usr/src/cmd/file/magicutils.c
116
char *newstr;
usr/src/cmd/file/magicutils.c
121
newstr = (char *)malloc((strlen(p) + 1) * sizeof (char));
usr/src/cmd/file/magicutils.c
122
if (newstr == NULL) {
usr/src/cmd/file/magicutils.c
129
s = newstr;
usr/src/cmd/file/magicutils.c
187
return (newstr);
usr/src/cmd/hal/hald/util.c
936
char *newstr;
usr/src/cmd/hal/hald/util.c
942
newstr = g_strdup (str);
usr/src/cmd/hal/hald/util.c
944
while (!g_utf8_validate (newstr, -1, (const char **) &endchar)) {
usr/src/cmd/hal/hald/util.c
949
if (strlen(newstr) == count)
usr/src/cmd/hal/hald/util.c
952
return newstr;
usr/src/cmd/krb5/kadmin/kclient/kconf.c
100
list->list[list->num++] = newstr;
usr/src/cmd/krb5/kadmin/kclient/kconf.c
85
char *newstr, **newlist;
usr/src/cmd/krb5/kadmin/kclient/kconf.c
96
newstr = strdup(str);
usr/src/cmd/krb5/kadmin/kclient/kconf.c
97
if (newstr == NULL)
usr/src/cmd/make/lib/makestate/ld_file.c
63
char *newstr;
usr/src/cmd/make/lib/makestate/ld_file.c
70
if (!(newstr = malloc(strlen(str) + 1))) {
usr/src/cmd/make/lib/makestate/ld_file.c
75
new->str = strcpy(newstr, str);
usr/src/cmd/mandoc/roff.c
981
char *addstr, *newstr;
usr/src/cmd/mandoc/roff.c
985
mandoc_asprintf(&newstr, "%s %s", n->string, addstr);
usr/src/cmd/mandoc/roff.c
988
n->string = newstr;
usr/src/cmd/praudit/format.c
3217
char *s, *newstr;
usr/src/cmd/praudit/format.c
3235
newstr = realloc(s, needed);
usr/src/cmd/praudit/format.c
3236
if (newstr == NULL)
usr/src/cmd/praudit/format.c
3238
s = newstr;
usr/src/cmd/sendmail/include/sm/conf.h
2798
# ifdef newstr
usr/src/cmd/sendmail/src/alias.c
920
ForwardPath = newstr("\201z/.forward");
usr/src/cmd/sendmail/src/conf.c
1012
p = newstr(p);
usr/src/cmd/sendmail/src/conf.c
2459
environ[i] = newstr(envp[i]);
usr/src/cmd/sendmail/src/conf.c
300
DefUser = newstr(pw->pw_name);
usr/src/cmd/sendmail/src/conf.c
348
PidFile = newstr(_PATH_SENDMAILPID);
usr/src/cmd/sendmail/src/conf.c
365
AuthMechanisms = newstr(AUTH_MECHANISMS);
usr/src/cmd/sendmail/src/daemon.c
1880
Daemons[NDaemons].d_inputfilterlist = newstr(Daemons[NDaemons].d_inputfilterlist);
usr/src/cmd/sendmail/src/daemon.c
1884
Daemons[NDaemons].d_name = newstr(Daemons[NDaemons].d_name);
usr/src/cmd/sendmail/src/daemon.c
1890
Daemons[NDaemons].d_name = newstr(num);
usr/src/cmd/sendmail/src/daemon.c
1953
ClientSettings[family].d_name = newstr(d.d_name);
usr/src/cmd/sendmail/src/daemon.c
1959
ClientSettings[family].d_name = newstr(num);
usr/src/cmd/sendmail/src/daemon.c
2860
mci->mci_heloname = newstr(name);
usr/src/cmd/sendmail/src/daemon.c
2875
mci->mci_heloname = newstr(HeloName);
usr/src/cmd/sendmail/src/daemon.c
3436
RealHostName = newstr(hostnamebyanyaddr(&RealHostAddr));
usr/src/cmd/sendmail/src/daemon.c
4210
map->map_app = newstr(map->map_app);
usr/src/cmd/sendmail/src/daemon.c
4212
map->map_tapp = newstr(map->map_tapp);
usr/src/cmd/sendmail/src/daemon.c
793
RealHostName = newstr(p);
usr/src/cmd/sendmail/src/domain.c
137
fbhosts[i] = newstr(fbhosts[i]);
usr/src/cmd/sendmail/src/envelope.c
1103
FullName = newstr(FullName);
usr/src/cmd/sendmail/src/envelope.c
1137
FullName = newstr(user.mbdb_fullname);
usr/src/cmd/sendmail/src/headers.c
224
s->s_header.hi_ruleset = newstr(p);
usr/src/cmd/sendmail/src/main.c
1025
queuegroup = newstr(&optarg[1]);
usr/src/cmd/sendmail/src/main.c
1030
new->queue_match = newstr(&optarg[1]);
usr/src/cmd/sendmail/src/main.c
1038
new->queue_match = newstr(&optarg[1]);
usr/src/cmd/sendmail/src/main.c
1046
new->queue_match = newstr(&optarg[1]);
usr/src/cmd/sendmail/src/main.c
1060
new->queue_match = newstr(&optarg[1]);
usr/src/cmd/sendmail/src/main.c
1131
BlankEnvelope.e_envid = newstr(optarg);
usr/src/cmd/sendmail/src/main.c
1698
full = newstr(denlstring(FullName, true, true));
usr/src/cmd/sendmail/src/main.c
1751
SmtpGreeting = newstr(p);
usr/src/cmd/sendmail/src/main.c
1759
UnixFromLine = newstr(p);
usr/src/cmd/sendmail/src/main.c
597
SaveArgv[i++] = newstr(*av);
usr/src/cmd/sendmail/src/main.c
680
FullName = newstr(FullName);
usr/src/cmd/sendmail/src/main.c
838
BlankEnvelope.e_bodytype = newstr(optarg);
usr/src/cmd/sendmail/src/main.c
844
conffile = newstr(optarg);
usr/src/cmd/sendmail/src/main.c
865
from = newstr("<>");
usr/src/cmd/sendmail/src/main.c
867
from = newstr(denlstring(optarg, true, true));
usr/src/cmd/sendmail/src/main.c
874
FullName = newstr(optarg);
usr/src/cmd/sendmail/src/main.c
981
quarantining = newstr(optarg);
usr/src/cmd/sendmail/src/map.c
1161
map->map_file = newstr(p);
usr/src/cmd/sendmail/src/map.c
1175
map->map_app = newstr(map->map_app);
usr/src/cmd/sendmail/src/map.c
1177
map->map_tapp = newstr(map->map_tapp);
usr/src/cmd/sendmail/src/map.c
1340
vp = newstr(value);
usr/src/cmd/sendmail/src/map.c
1346
vp = newstr(value);
usr/src/cmd/sendmail/src/map.c
272
map->map_app = newstr(map->map_app);
usr/src/cmd/sendmail/src/map.c
274
map->map_tapp = newstr(map->map_tapp);
usr/src/cmd/sendmail/src/map.c
276
map->map_keycolnm = newstr(map->map_keycolnm);
usr/src/cmd/sendmail/src/map.c
278
map->map_valcolnm = newstr(map->map_valcolnm);
usr/src/cmd/sendmail/src/map.c
287
map->map_file = newstr(map->map_file);
usr/src/cmd/sendmail/src/map.c
2927
map->map_domain = newstr(nisplus_default_domain());
usr/src/cmd/sendmail/src/map.c
293
map->map_rebuild = newstr(p);
usr/src/cmd/sendmail/src/map.c
2934
map->map_domain = newstr("");
usr/src/cmd/sendmail/src/map.c
2993
map->map_keycolnm = newstr(COL_NAME(res,0));
usr/src/cmd/sendmail/src/map.c
3755
vp = newstr(p);
usr/src/cmd/sendmail/src/map.c
4366
map->map_app = newstr(ldapmap_dequote(map->map_app));
usr/src/cmd/sendmail/src/map.c
4368
map->map_tapp = newstr(ldapmap_dequote(map->map_tapp));
usr/src/cmd/sendmail/src/map.c
4379
lmap->ldap_host = newstr(ldapmap_dequote(lmap->ldap_host));
usr/src/cmd/sendmail/src/map.c
4386
lmap->ldap_uri = newstr(ldapmap_dequote(lmap->ldap_uri));
usr/src/cmd/sendmail/src/map.c
4393
lmap->ldap_binddn = newstr(ldapmap_dequote(lmap->ldap_binddn));
usr/src/cmd/sendmail/src/map.c
4480
lmap->ldap_secret = newstr(ldapmap_dequote(lmap->ldap_secret));
usr/src/cmd/sendmail/src/map.c
4486
lmap->ldap_base = newstr(ldapmap_dequote(lmap->ldap_base));
usr/src/cmd/sendmail/src/map.c
4504
lmap->ldap_filter = newstr(ldapmap_dequote(lmap->ldap_filter));
usr/src/cmd/sendmail/src/map.c
4593
lmap->ldap_attr[use] = newstr(v);
usr/src/cmd/sendmail/src/map.c
4598
lmap->ldap_attr_needobjclass[use] = newstr(needobjclass);
usr/src/cmd/sendmail/src/map.c
4890
map->map_app = newstr(ph_map_dequote(map->map_app));
usr/src/cmd/sendmail/src/map.c
4892
map->map_tapp = newstr(ph_map_dequote(map->map_tapp));
usr/src/cmd/sendmail/src/map.c
4895
pmap->ph_field_list = newstr(ph_map_dequote(pmap->ph_field_list));
usr/src/cmd/sendmail/src/map.c
4898
pmap->ph_servers = newstr(ph_map_dequote(pmap->ph_servers));
usr/src/cmd/sendmail/src/map.c
5029
hostlist = newstr(pmap->ph_servers);
usr/src/cmd/sendmail/src/map.c
5986
s->s_alias = newstr(rhs);
usr/src/cmd/sendmail/src/map.c
6942
map->map_app = newstr(map->map_app);
usr/src/cmd/sendmail/src/map.c
6944
map_p->regex_delim = newstr(map_p->regex_delim);
usr/src/cmd/sendmail/src/map.c
707
return newstr(buf);
usr/src/cmd/sendmail/src/map.c
709
return newstr(autodomain);
usr/src/cmd/sendmail/src/map.c
7190
ns_map->mapname = newstr(mapname);
usr/src/cmd/sendmail/src/mci.c
976
mci->mci_status = newstr(&buf[1]);
usr/src/cmd/sendmail/src/mci.c
980
mci->mci_rstatus = newstr(&buf[1]);
usr/src/cmd/sendmail/src/milter.c
1239
m->mf_name = newstr(line);
usr/src/cmd/sendmail/src/milter.c
1283
m->mf_conn = newstr(p);
usr/src/cmd/sendmail/src/milter.c
141
response = newstr(default); \
usr/src/cmd/sendmail/src/milter.c
1502
p = newstr(val);
usr/src/cmd/sendmail/src/milter.c
153
response = newstr(default); \
usr/src/cmd/sendmail/src/milter.c
3049
addheader(newstr(response), mh_value, H_USER, e,
usr/src/cmd/sendmail/src/milter.c
3135
insheader(idx, newstr(field), mh_value, H_USER, e,
usr/src/cmd/sendmail/src/milter.c
3257
addheader(newstr(field), mh_value, H_USER, e,
usr/src/cmd/sendmail/src/milter.c
4508
response = newstr("");
usr/src/cmd/sendmail/src/parseaddr.c
2938
map->map_app = newstr(map->map_app);
usr/src/cmd/sendmail/src/queue.c
2676
w->w_name = newstr(d->d_name);
usr/src/cmd/sendmail/src/queue.c
2701
w->w_name = newstr(d->d_name);
usr/src/cmd/sendmail/src/queue.c
2807
w->w_host = newstr(&p[1]);
usr/src/cmd/sendmail/src/queue.c
6164
qg->qg_qdir = newstr(basedir);
usr/src/cmd/sendmail/src/queue.c
6257
newstr(relpath);
usr/src/cmd/sendmail/src/queue.c
6260
newstr(d->d_name);
usr/src/cmd/sendmail/src/queue.c
6317
qg->qg_qpaths[0].qp_name = newstr(qg->qg_qdir + blen);
usr/src/cmd/sendmail/src/queue.c
6321
qg->qg_qpaths[0].qp_name = newstr(".");
usr/src/cmd/sendmail/src/queue.c
7316
qg->qg_name = newstr(line);
usr/src/cmd/sendmail/src/queue.c
7353
qg->qg_qdir = newstr(p);
usr/src/cmd/sendmail/src/queue.c
7485
qg->qg_qdir = newstr(QueueDir);
usr/src/cmd/sendmail/src/queue.c
8847
reason = newstr(denlstring(reason, true, true));
usr/src/cmd/sendmail/src/readcf.c
1226
m->m_name = newstr(line);
usr/src/cmd/sendmail/src/readcf.c
1260
m->m_mailer = newstr(p);
usr/src/cmd/sendmail/src/readcf.c
1307
m->m_eol = newstr(p);
usr/src/cmd/sendmail/src/readcf.c
1342
m->m_execdir = newstr(p);
usr/src/cmd/sendmail/src/readcf.c
1349
m->m_defcharset = newstr(p);
usr/src/cmd/sendmail/src/readcf.c
1368
m->m_mtatype = newstr(p);
usr/src/cmd/sendmail/src/readcf.c
1482
m->m_rootdir = newstr(p);
usr/src/cmd/sendmail/src/readcf.c
1805
argv[i++] = newstr(q);
usr/src/cmd/sendmail/src/readcf.c
2650
ErrMsgFile = newstr(val);
usr/src/cmd/sendmail/src/readcf.c
2704
HelpFile = newstr(val);
usr/src/cmd/sendmail/src/readcf.c
2775
ForwardPath = newstr(val);
usr/src/cmd/sendmail/src/readcf.c
2802
p = newstr(ep);
usr/src/cmd/sendmail/src/readcf.c
2861
PostMasterCopy = newstr(val);
usr/src/cmd/sendmail/src/readcf.c
2875
QueueDir = newstr(val);
usr/src/cmd/sendmail/src/readcf.c
2900
StatFile = newstr(val);
usr/src/cmd/sendmail/src/readcf.c
2929
TimeZoneSpec = newstr(val);
usr/src/cmd/sendmail/src/readcf.c
2933
UdbSpec = newstr(val);
usr/src/cmd/sendmail/src/readcf.c
2969
DefUser = newstr(pw->pw_name);
usr/src/cmd/sendmail/src/readcf.c
2990
FallbackMX = newstr(val);
usr/src/cmd/sendmail/src/readcf.c
3087
HostsFile = newstr(val);
usr/src/cmd/sendmail/src/readcf.c
3101
DefaultCharSet = newstr(denlstring(val, true, true));
usr/src/cmd/sendmail/src/readcf.c
3106
ServiceSwitchFile = newstr(val);
usr/src/cmd/sendmail/src/readcf.c
3140
SafeFileEnv = newstr(val);
usr/src/cmd/sendmail/src/readcf.c
3214
MustQuoteChars = newstr(buf);
usr/src/cmd/sendmail/src/readcf.c
3218
SmtpGreeting = newstr(munchstring(val, NULL, '\0'));
usr/src/cmd/sendmail/src/readcf.c
3222
UnixFromLine = newstr(munchstring(val, NULL, '\0'));
usr/src/cmd/sendmail/src/readcf.c
3229
OperatorChars = newstr(munchstring(val, NULL, '\0'));
usr/src/cmd/sendmail/src/readcf.c
3259
DoubleBounceAddr = newstr(val);
usr/src/cmd/sendmail/src/readcf.c
3266
HostStatDir = newstr(val);
usr/src/cmd/sendmail/src/readcf.c
3305
RunAsUserName = newstr(val);
usr/src/cmd/sendmail/src/readcf.c
3579
AuthMechanisms = newstr(val);
usr/src/cmd/sendmail/src/readcf.c
3588
AuthRealm = newstr(val);
usr/src/cmd/sendmail/src/readcf.c
3859
InputFilterList = newstr(val);
usr/src/cmd/sendmail/src/readcf.c
3902
Mbdb = newstr(val);
usr/src/cmd/sendmail/src/readcf.c
3931
FallbackSmartHost = newstr(val);
usr/src/cmd/sendmail/src/readcf.c
3935
HeloName = newstr(val);
usr/src/cmd/sendmail/src/readcf.c
3946
MemoryResource = newstr(val);
usr/src/cmd/sendmail/src/readcf.c
3956
MessageAccept = newstr(val);
usr/src/cmd/sendmail/src/readcf.c
4118
s->s_map.map_mname = newstr(mapname);
usr/src/cmd/sendmail/src/readcf.c
4254
RuleSetNames[ruleset] = newstr(q);
usr/src/cmd/sendmail/src/readcf.c
626
Priorities[NumPriorities].pri_name = newstr(&bp[1]);
usr/src/cmd/sendmail/src/readcf.c
958
mn = newstr(macname(class));
usr/src/cmd/sendmail/src/sendmail.h
2580
extern char *newstr __P((const char *));
usr/src/cmd/sendmail/src/srvrsmtp.c
1153
smtp.sm_quarmsg = newstr(e->e_quarmsg);
usr/src/cmd/sendmail/src/srvrsmtp.c
1768
auth_type = newstr(p);
usr/src/cmd/sendmail/src/srvrsmtp.c
1959
nullserver = newstr(MsgBuf);
usr/src/cmd/sendmail/src/srvrsmtp.c
2170
nullserver = newstr(response);
usr/src/cmd/sendmail/src/srvrsmtp.c
2204
smtp.sm_quarmsg = newstr(e->e_quarmsg);
usr/src/cmd/sendmail/src/srvrsmtp.c
4720
*user = newstr(auth_identity);
usr/src/cmd/sendmail/src/util.c
33
newstr(s)
usr/src/cmd/sendmail/util/mailcompat.c
204
return newstr(start);
usr/src/cmd/sendmail/util/mailcompat.c
47
static char *newstr();
usr/src/cmd/sendmail/util/mailcompat.c
95
homedir = newstr(pw->pw_dir);
usr/src/cmd/sendmail/util/vacation.c
223
homedir = newstr(pw->pw_dir);
usr/src/cmd/sendmail/util/vacation.c
533
Subject = newstr(buf+9);
usr/src/cmd/sendmail/util/vacation.c
536
EncodedSubject = newstr(Subject);
usr/src/cmd/sendmail/util/vacation.c
537
decoded_subject = newstr(Subject);
usr/src/cmd/sendmail/util/vacation.c
99
static char *newstr(char *);
usr/src/cmd/sgs/elfedit/modules/common/str.c
520
const char *newstr = argstate->argv[1];
usr/src/cmd/sgs/elfedit/modules/common/str.c
525
len = strlen(newstr);
usr/src/cmd/sgs/elfedit/modules/common/str.c
538
EC_WORD(ndx), newstr);
usr/src/cmd/sgs/elfedit/modules/common/str.c
545
EC_WORD(ndx), newstr);
usr/src/cmd/sgs/elfedit/modules/common/str.c
552
if ((ndx == 0) && (*newstr != '\0'))
usr/src/cmd/sgs/elfedit/modules/common/str.c
555
EC_WORD(ndx), newstr);
usr/src/cmd/sgs/elfedit/modules/common/str.c
560
if (newstr[i] != oldstr[i])
usr/src/cmd/sgs/elfedit/modules/common/str.c
564
strsec->sec_shndx, strsec->sec_name, ndx, newstr);
usr/src/cmd/sgs/elfedit/modules/common/str.c
596
newstr);
usr/src/cmd/sgs/elfedit/modules/common/str.c
608
strsec->sec_shndx, strsec->sec_name, ndx, len, oldstr, newstr);
usr/src/cmd/sgs/elfedit/modules/common/str.c
609
bcopy(newstr, oldstr, ncp);
usr/src/cmd/sgs/libconv/common/config.c
250
char *newstr;
usr/src/cmd/sgs/libconv/common/config.c
261
newstr = (char *)curstr;
usr/src/cmd/sgs/libconv/common/config.c
263
*(newstr++) = *(str++); /* copy up to */
usr/src/cmd/sgs/libconv/common/config.c
266
*(newstr++) = *(new++); /* add new string and */
usr/src/cmd/sgs/libconv/common/config.c
267
*(newstr++) = ':'; /* separator */
usr/src/cmd/sgs/libconv/common/config.c
269
*(newstr++) = *(str++); /* add remaining */
usr/src/cmd/sgs/libconv/common/config.c
270
*(newstr++) = '\0'; /* string */
usr/src/cmd/sgs/libldmake/common/ld_file.c
63
char *newstr;
usr/src/cmd/sgs/libldmake/common/ld_file.c
71
if (!(newstr = malloc(strlen(str) + 1))) {
usr/src/cmd/sgs/libldmake/common/ld_file.c
76
new->str = strcpy(newstr, str);
usr/src/lib/gss_mechs/mech_krb5/profile/prof_get.c
72
char *newstr, **newlist;
usr/src/lib/gss_mechs/mech_krb5/profile/prof_get.c
83
newstr = malloc(strlen(str)+1);
usr/src/lib/gss_mechs/mech_krb5/profile/prof_get.c
84
if (newstr == 0)
usr/src/lib/gss_mechs/mech_krb5/profile/prof_get.c
86
strcpy(newstr, str);
usr/src/lib/gss_mechs/mech_krb5/profile/prof_get.c
88
list->list[list->num++] = newstr;
usr/src/lib/krb5/kadm5/srv/server_misc.c
65
static char newstr[80];
usr/src/lib/krb5/kadm5/srv/server_misc.c
70
if (i >= sizeof(newstr))
usr/src/lib/krb5/kadm5/srv/server_misc.c
71
i = sizeof(newstr)-1;
usr/src/lib/krb5/kadm5/srv/server_misc.c
73
q = newstr;
usr/src/lib/krb5/kadm5/srv/server_misc.c
78
return(newstr);
usr/src/lib/libadm/common/getdgrp.c
268
char *newstr; /* Space for the dgroup name */
usr/src/lib/libadm/common/getdgrp.c
291
if (newstr = malloc(strlen(dgrp->name)+1)) {
usr/src/lib/libadm/common/getdgrp.c
294
newnode->name = strcpy(newstr, dgrp->name);
usr/src/lib/libc/port/print/asprintf.c
40
char *newstr;
usr/src/lib/libc/port/print/asprintf.c
50
if ((newstr = malloc(len)) == NULL)
usr/src/lib/libc/port/print/asprintf.c
58
(void) memcpy(newstr, string, len);
usr/src/lib/libc/port/print/asprintf.c
59
*str = newstr;
usr/src/lib/libc/port/print/asprintf.c
73
if ((newstr = malloc(len)) == NULL)
usr/src/lib/libc/port/print/asprintf.c
75
ret = vsnprintf(newstr, len, format, ap);
usr/src/lib/libc/port/print/asprintf.c
77
free(newstr);
usr/src/lib/libc/port/print/asprintf.c
81
*str = newstr;
usr/src/lib/libc/port/print/asprintf.c
84
free(newstr);
usr/src/lib/libdwarf/common/dwarf_harmless.c
203
char *newstr =
usr/src/lib/libdwarf/common/dwarf_harmless.c
205
dhp->dh_errors[i] = newstr;
usr/src/lib/libdwarf/common/dwarf_harmless.c
206
if (!newstr) {
usr/src/lib/libdwarf/common/dwarf_harmless.c
214
newstr[0] = 0;
usr/src/lib/libdwarf/common/dwarf_macro5.c
1066
char * newstr = 0;
usr/src/lib/libdwarf/common/dwarf_macro5.c
1071
newstr = calloc(1,slen+1);
usr/src/lib/libdwarf/common/dwarf_macro5.c
1072
if (!newstr) {
usr/src/lib/libdwarf/common/dwarf_macro5.c
1075
strcpy(newstr,ostr);
usr/src/lib/libdwarf/common/dwarf_macro5.c
1076
srcfiles2[i] = newstr;
usr/src/lib/libnisdb/ldap_val.c
1688
char *newstr;
usr/src/lib/libnisdb/ldap_val.c
1709
newstr = strdup(&str[s]);
usr/src/lib/libnisdb/ldap_val.c
1715
if (newstr == 0 || newval == 0) {
usr/src/lib/libnisdb/ldap_val.c
1721
sfree(newstr);
usr/src/lib/libnisdb/ldap_val.c
1724
val->val[val->numVals].value = newstr;
usr/src/lib/libnisdb/ldap_val.c
1725
val->val[val->numVals].length = strlen(newstr) + 1;
usr/src/lib/libnisdb/ldap_val.c
2267
char *newstr = 0;
usr/src/lib/libnisdb/ldap_val.c
2280
str = scanMappingFormat(f, n, nf, str, &newstr, 0, 0);
usr/src/lib/libnisdb/ldap_val.c
2291
if (str == 0 || *str != '\0' || newstr == 0 ||
usr/src/lib/libnisdb/ldap_val.c
2300
sfree(newstr);
usr/src/lib/libnisdb/ldap_val.c
2305
val->val[val->numVals].value = newstr;
usr/src/lib/libnisdb/ldap_val.c
2306
val->val[val->numVals].length = strlen(newstr) + 1;
usr/src/lib/libsec/common/acltext.c
844
str_append(dynaclstr_t *dstr, char *newstr)
usr/src/lib/libsec/common/acltext.c
846
size_t len = strlen(newstr);
usr/src/lib/libsec/common/acltext.c
855
(void) strcat(&dstr->d_aclexport[dstr->d_pos], newstr);
usr/src/lib/libsecdb/common/secdb.c
329
char *newstr = NULL;
usr/src/lib/libsecdb/common/secdb.c
336
if ((len > 0) && ((newstr = (char *)malloc(len + 1)) != NULL)) {
usr/src/lib/libsecdb/common/secdb.c
337
(void) memset(newstr, 0, len);
usr/src/lib/libsecdb/common/secdb.c
339
(void) strcat(newstr, strings[i]);
usr/src/lib/libsecdb/common/secdb.c
340
(void) strcat(newstr, ",");
usr/src/lib/libsecdb/common/secdb.c
342
newstr[len-1] = '\0';
usr/src/lib/libsecdb/common/secdb.c
343
return (newstr);
usr/src/lib/libshare/nfs/libshare_nfs.c
448
char *newstr;
usr/src/lib/libshare/nfs/libshare_nfs.c
452
newstr = (char *)malloc(len);
usr/src/lib/libshare/nfs/libshare_nfs.c
453
if (newstr != NULL)
usr/src/lib/libshare/nfs/libshare_nfs.c
454
(void) snprintf(newstr, len, "%s%c%s", str1, sep, str2);
usr/src/lib/libshare/nfs/libshare_nfs.c
455
return (newstr);
usr/src/test/smbsrv-tests/tests/smb_sid/large_sids.c
30
char newstr[1024];
usr/src/test/smbsrv-tests/tests/smb_sid/large_sids.c
40
smb_sid_tostr(sid, newstr);
usr/src/test/smbsrv-tests/tests/smb_sid/large_sids.c
42
if (strncmp(sidstr, newstr, sizeof (newstr)) != 0) {
usr/src/test/smbsrv-tests/tests/smb_sid/large_sids.c
44
sidstr, newstr);
usr/src/tools/ctf/common/memory.c
69
char *newstr;
usr/src/tools/ctf/common/memory.c
71
if ((newstr = strdup(str)) == NULL)
usr/src/tools/ctf/common/memory.c
74
return (newstr);
usr/src/tools/ctf/common/memory.c
80
char *newstr;
usr/src/tools/ctf/common/memory.c
82
if ((newstr = malloc(len + 1)) == NULL)
usr/src/tools/ctf/common/memory.c
85
(void) strncpy(newstr, str, len);
usr/src/tools/ctf/common/memory.c
86
newstr[len] = '\0';
usr/src/tools/ctf/common/memory.c
88
return (newstr);
usr/src/uts/sun4u/os/mach_cpu_states.c
166
char *newstr = kmem_alloc(strlen(
usr/src/uts/sun4u/os/mach_cpu_states.c
168
if (newstr != NULL) {
usr/src/uts/sun4u/os/mach_cpu_states.c
170
(void) strcpy(newstr, bootstr);
usr/src/uts/sun4u/os/mach_cpu_states.c
171
(void) strcat(newstr, " -f ");
usr/src/uts/sun4u/os/mach_cpu_states.c
176
&(newstr[newstrlen]));
usr/src/uts/sun4u/os/mach_cpu_states.c
177
newstr[newstrlen + dllen] =
usr/src/uts/sun4u/os/mach_cpu_states.c
179
bootstr = newstr;
usr/src/uts/sun4v/io/ds_common.c
205
char *newstr;
usr/src/uts/sun4v/io/ds_common.c
207
newstr = DS_MALLOC(strlen(str) + 1);
usr/src/uts/sun4v/io/ds_common.c
208
(void) strcpy(newstr, str);
usr/src/uts/sun4v/io/ds_common.c
209
return (newstr);