Searched refs:le (Results 1 - 25 of 35) sorted by relevance

12

/osnet-11/usr/src/cmd/perl/5.8.4/distrib/t/io/
H A Dinplace.t12 `.\\perl -le "print 'foo'" > .a`;
13 `.\\perl -le "print 'foo'" > .b`;
14 `.\\perl -le "print 'foo'" > .c`;
18 `perl -le "print 'foo'" > .a`;
19 `perl -le "print 'foo'" > .b`;
20 `perl -le "print 'foo'" > .c`;
24 `$^X -le "print 'foo'" > .a`;
25 `$^X -le "print 'foo'" > .b`;
26 `$^X -le "print 'foo'" > .c`;
30 `MCR []perl. -le "prin
[all...]
H A Diprefix.t12 `.\\perl -le "print 'foo'" > .a`;
13 `.\\perl -le "print 'foo'" > .b`;
14 `.\\perl -le "print 'foo'" > .c`;
18 `perl -le "print 'foo'" > .a`;
19 `perl -le "print 'foo'" > .b`;
20 `perl -le "print 'foo'" > .c`;
24 `MCR []perl. -le "print 'foo'" > ./.a`;
25 `MCR []perl. -le "print 'foo'" > ./.b`;
26 `MCR []perl. -le "print 'foo'" > ./.c`;
30 `$^X -le "prin
[all...]
H A Ddup.t28 $echo = qq{$^X -le "print q(ok %d)"};
H A Dopen.t213 ok( open(F, qq{$Perl -le "print 'ok'"|}), 'open to pipe' );
219 ok( open(F, "-|", qq{$Perl -le "print 'ok'"}), 'open -|');
/osnet-11/usr/src/lib/libadutils/common/
H A Dadutils_threadfuncs.c185 struct adutils_lderrno *le; local
188 le = pthread_getspecific(adutils_lderrno_key);
189 if (le == NULL) {
190 le = calloc(1, sizeof (*le));
191 if (le == NULL) {
197 rc = pthread_setspecific(adutils_lderrno_key, le);
203 free(le);
208 return (le);
219 struct adutils_lderrno *le;
262 struct adutils_lderrno *le = tsd; local
[all...]
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/t/op/
H A Dexec.t31 $exit = system qq{$Perl -le "print q{ok $tnum - interp system(EXPR)"}};
37 $exit = system qq{$Perl -le "print q{ok $tnum - split & direct system(EXPR)"}};
45 $exit = system $Perl, '-le',
54 my $echo_out = `$Perl -e "print 'ok'" | $Perl -le "print <STDIN>"`;
69 is( scalar `$Perl -le "print 'ok'" | $Perl -le "print <STDIN>"`,
72 is( scalar `$Perl -e "print 'ok'" | $Perl -le "print <STDIN>"`,
75 is( scalar `$Perl -le "print 'ok'" | $Perl -e "print <STDIN>"`,
104 is( `$Perl -le "print 'ok'"`, "ok\n", 'basic ``' );
106 $Perl -le "prin
[all...]
H A Dsrand.t55 @first_run = `$^X -le "print int rand 100 for 1..100"`;
57 @second_run = `$^X -le "print int rand 100 for 1..100"`;
H A Dcmp.t177 if ($cmp == -1 && $i13 le $j13 ||
178 $cmp == 0 && ($i13 le $j13) ||
179 $cmp == 1 && !($i13 le $j13))
184 nok ($ok, $i3, 'cmp', $j3, $cmp, $i, $j, 'le');
H A Dlex_assign.t16 open OP, qq{$runme -le "print 'aaa Ok ok' for 1..100"|};
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/t/comp/
H A Dscript.t13 $x = `$Perl -le "print 'ok';"`;
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/List/Util/t/
H A Dfirst.t32 my $foo = first { $_->[1] le "e" and "e" le $_->[2] }
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/t/run/
H A Dswitcht.t19 my $out = `$Perl -le "print q(Hello)"`;
26 my $out = `$Perl -le "print q(Hello)"`;
/osnet-11/usr/src/lib/libntsvcs/common/
H A Deventlog_log.c104 logr_syslog_set_timestamp(char **argv, logr_entry_t *le) argument
116 le->le_timestamp.tv_sec = 0;
128 le->le_timestamp.tv_sec = mktime(&tm);
138 logr_syslog_set_priority(char **argv, logr_entry_t *le) argument
145 le->le_pri = LOG_INFO;
154 le->le_pri = entry->p_value;
171 logr_syslog_parse_entry(char *logline, logr_entry_t *le) argument
207 (void) strlcpy(le->le_msg, bp, LOGR_MAXENTRYLEN);
208 (void) strlcpy(le->le_hostname, argv[LOGR_HOST], MAXHOSTNAMELEN);
209 logr_syslog_set_timestamp(argv, le);
[all...]
H A Deventlog_svc.c432 logr_set_logrecord(char *src_name, logr_entry_t *le, argument
446 (void) ndr_mbstowcs(NULL, wcs_hostname, le->le_hostname,
447 strlen(le->le_hostname) + 1);
448 hostname_len = LOGR_WNSTRLEN(le->le_hostname);
461 rec->TimeGenerated = LE_IN32(&le->le_timestamp.tv_sec);
462 rec->TimeWritten = LE_IN32(&le->le_timestamp.tv_sec);
463 logr_set_event_typeid(le->le_pri, &rec->EventType, &rec->EventID);
480 len = strlen(le->le_msg) + 1;
484 le->le_msg, len);
502 logr_entry_t *le; local
[all...]
/osnet-11/usr/src/lib/libldap5/sources/ldap/common/
H A Dopen.c209 struct nsldapi_ldap_error *le; local
212 le = pthread_getspecific( nsldapi_key );
214 if (le == NULL) {
219 le = pthread_getspecific( nsldapi_key );
221 if (le == NULL) {
226 le->le_errno = err;
228 if ( le->le_matched != NULL ) {
229 ldap_memfree( le->le_matched );
231 le->le_matched = matched;
233 if ( le
242 struct nsldapi_ldap_error *le; local
[all...]
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/t/base/
H A Dterm.t22 $x = `$^X -le "print 'hi there'"`;
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/IO/t/
H A Dio_dup.t44 $echo = qq{$^X -le "print q(ok %d)"};
/osnet-11/usr/src/lib/krb5/kadm5/
H A Dlogger.c198 klog_rotate(struct log_entry *le)
215 if (le->lfu_rotate_period == K_LOG_DEF_FILE_ROTATE_PERIOD)
220 if (t >= le->lfu_last_rotated + le->lfu_rotate_period) {
227 name_buf1 = malloc(strlen(le->lfu_fname) + 32);
232 name_buf2 = malloc(strlen(le->lfu_fname) + 32);
246 (void) sprintf(new_name, "%s.%d", le->lfu_fname,
247 le->lfu_rotate_versions - 1);
253 for (i = le->lfu_rotate_versions - 1; i > 0; i--) {
254 (void) sprintf(old_name, "%s.%d", le
196 klog_rotate(struct log_entry *le) argument
[all...]
/osnet-11/usr/src/lib/libsldap/common/
H A Dns_connmgmt.c138 struct ldap_error *le = (struct ldap_error *)key; local
140 if (le == NULL)
142 if (le->le_matched != NULL) {
143 ldap_memfree(le->le_matched);
145 if (le->le_errmsg != NULL) {
146 ldap_memfree(le->le_errmsg);
148 free(le);
228 struct ldap_error *le; local
231 if ((eno = thr_getspecific(ns_mtckey, (void **)&le)) != 0) {
239 if (le
275 struct ldap_error *le; local
[all...]
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/B/t/
H A Dterse.t92 my $items = qx{$^X $path "-MO=Terse" -le "print \\42" $redir};
/osnet-11/usr/src/grub/grub-0.97/stage2/
H A Dfsys_zfs.c601 struct zap_leaf_entry *le; local
610 chunk != CHAIN_END; chunk = le->le_next) {
615 le = ZAP_LEAF_ENTRY(l, blksft, chunk);
618 if (le->le_type != ZAP_CHUNK_ENTRY)
621 if (le->le_hash != h)
624 if (zap_leaf_array_equal(l, blksft, le->le_name_chunk,
625 le->le_name_length, name)) {
630 if (le->le_int_size != 8 || le->le_value_length != 1)
635 le
[all...]
/osnet-11/usr/src/lib/libxcurses/h/posix/
H A Dmkslocal.h1017 * 30 characters for sprintf(str, "%le", float)
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/
H A Dsort.t66 next if ($aref->[$i] le $aref->[$i+1]);
/osnet-11/usr/src/grub/grub2/grub-core/fs/zfs/
H A Dzfs.c2407 struct zap_leaf_entry *le; local
2416 chunk != CHAIN_END; chunk = grub_zfs_to_cpu16 (le->le_next, endian))
2422 le = ZAP_LEAF_ENTRY (l, blksft, chunk);
2425 if (le->le_type != ZAP_CHUNK_ENTRY)
2428 if (grub_zfs_to_cpu64 (le->le_hash,endian) != h)
2431 grub_dprintf ("zfs", "fzap: length %d\n", (int) le->le_name_length);
2434 grub_zfs_to_cpu16 (le->le_name_chunk,endian),
2435 grub_zfs_to_cpu16 (le->le_name_length, endian),
2440 if (le->le_int_size != 8 || grub_zfs_to_cpu16 (le
2584 struct zap_leaf_entry *le; local
[all...]
/osnet-11/usr/src/lib/librestart/common/
H A Dlibrestart.c479 mc_error_t *le; local
492 if (e == NULL && (le = malloc(sizeof (mc_error_t))) == NULL)
495 le = e;
497 le->type = type;
498 le->destroy = 1;
502 if ((le = realloc(e, sizeof (mc_error_t) +
505 le = e;
509 le->size = size;
510 (void) vsnprintf(le->msg, le
[all...]

Completed in 128 milliseconds

12