Searched defs:le (Results 1 - 11 of 11) sorted by relevance

/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/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/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/cmd/perl/5.8.4/distrib/lib/Unicode/
H A DCollate.pm733 sub le { $_[0]->getSortKey($_[1]) le $_[0]->getSortKey($_[2]) } subroutine
1491 =item C<$result = $Collator-E<gt>le($a, $b)>
1502 le : whether $a is lesser than $b or equal to $b.
/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/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...]
/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/lib/libdtrace/common/
H A Ddt_parser.c326 ctf_encoding_t le, re; local
342 if (ctf_type_encoding(lfp, lbase, &le) == CTF_ERR) {
358 lrank = le.cte_bits + ((le.cte_format & CTF_INT_SIGNED) == 0);
/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/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...]

Completed in 629 milliseconds