Searched refs:header (Results 1 - 25 of 455) sorted by relevance

1234567891011>>

/opensolaris-onvv-gate/usr/src/lib/udapl/udapl_tavor/common/
H A Ddapl_get_consumer_context.c67 DAPL_HEADER *header; local
71 header = (DAPL_HEADER *)dat_handle;
72 if (((header) == NULL) ||
73 ((unsigned long)(header) & 3) ||
74 (header->magic != DAPL_MAGIC_IA &&
75 header->magic != DAPL_MAGIC_EVD &&
76 header->magic != DAPL_MAGIC_EP &&
77 header->magic != DAPL_MAGIC_LMR &&
78 header->magic != DAPL_MAGIC_RMR &&
79 header
[all...]
H A Ddapl_get_handle_type.c66 DAPL_HEADER *header; local
70 header = (DAPL_HEADER *)dat_handle;
71 if (((header) == NULL) ||
72 ((unsigned long)(header) & 3) ||
73 (header->magic != DAPL_MAGIC_IA &&
74 header->magic != DAPL_MAGIC_EVD &&
75 header->magic != DAPL_MAGIC_EP &&
76 header->magic != DAPL_MAGIC_LMR &&
77 header->magic != DAPL_MAGIC_RMR &&
78 header
[all...]
H A Ddapl_set_consumer_context.c68 DAPL_HEADER *header; local
72 header = (DAPL_HEADER *)dat_handle;
73 if (((header) == NULL) ||
74 ((unsigned long) (header) & 3) ||
75 (header->magic != DAPL_MAGIC_IA &&
76 header->magic != DAPL_MAGIC_EVD &&
77 header->magic != DAPL_MAGIC_EP &&
78 header->magic != DAPL_MAGIC_LMR &&
79 header->magic != DAPL_MAGIC_RMR &&
80 header
[all...]
H A Ddapl_cr_util.c78 * initialize the header
80 cr_ptr->header.provider = ia_ptr->header.provider;
81 cr_ptr->header.magic = DAPL_MAGIC_CR;
82 cr_ptr->header.handle_type = DAT_HANDLE_TYPE_CR;
83 cr_ptr->header.owner_ia = ia_ptr;
84 cr_ptr->header.user_context.as_64 = 0;
85 cr_ptr->header.user_context.as_ptr = NULL;
86 dapl_llist_init_entry(&cr_ptr->header.ia_list_entry);
87 dapl_os_lock_init(&cr_ptr->header
[all...]
H A Ddapl_pz_util.c74 * initialize the header
76 pz->header.provider = ia->header.provider;
77 pz->header.magic = DAPL_MAGIC_PZ;
78 pz->header.handle_type = DAT_HANDLE_TYPE_PZ;
79 pz->header.owner_ia = ia;
80 pz->header.user_context.as_64 = 0;
81 pz->header.user_context.as_ptr = NULL;
82 dapl_llist_init_entry(&pz->header.ia_list_entry);
84 dapl_os_lock_init(&pz->header
[all...]
H A Ddapl_sp_util.c81 * initialize the header
83 sp_ptr->header.provider = ia_ptr->header.provider;
85 sp_ptr->header.magic = DAPL_MAGIC_PSP;
86 sp_ptr->header.handle_type = DAT_HANDLE_TYPE_PSP;
88 sp_ptr->header.magic = DAPL_MAGIC_RSP;
89 sp_ptr->header.handle_type = DAT_HANDLE_TYPE_RSP;
91 sp_ptr->header.owner_ia = ia_ptr;
92 sp_ptr->header.user_context.as_64 = 0;
93 sp_ptr->header
[all...]
H A Ddapl_rmr_util.c49 * initialize the header
51 rmr->header.provider = pz->header.provider;
52 rmr->header.magic = DAPL_MAGIC_RMR;
53 rmr->header.handle_type = DAT_HANDLE_TYPE_RMR;
54 rmr->header.owner_ia = pz->header.owner_ia;
55 rmr->header.user_context.as_64 = 0;
56 rmr->header.user_context.as_ptr = 0;
57 dapl_llist_init_entry(&rmr->header
[all...]
H A Ddapl_cno_util.c73 * Initialize the header.
75 cno_ptr->header.provider = ia_ptr->header.provider;
76 cno_ptr->header.magic = DAPL_MAGIC_CNO;
77 cno_ptr->header.handle_type = DAT_HANDLE_TYPE_CNO;
78 cno_ptr->header.owner_ia = ia_ptr;
79 cno_ptr->header.user_context.as_64 = 0;
80 cno_ptr->header.user_context.as_ptr = NULL;
81 dapl_llist_init_entry(&cno_ptr->header.ia_list_entry);
83 dapl_os_lock_init(&cno_ptr->header
[all...]
H A Ddapl_srq_util.c70 * initialize the header
72 srq_ptr->header.provider = ia_ptr->header.provider;
73 srq_ptr->header.magic = DAPL_MAGIC_SRQ;
74 srq_ptr->header.handle_type = DAT_HANDLE_TYPE_SRQ;
75 srq_ptr->header.owner_ia = ia_ptr;
76 srq_ptr->header.user_context.as_64 = 0;
77 dapl_llist_init_entry(&srq_ptr->header.ia_list_entry);
78 dapl_os_lock_init(&srq_ptr->header.lock);
113 dapl_os_assert(srq_ptr->header
[all...]
H A Ddapl_lmr_util.c65 * initialize the header
67 lmr->header.provider = ia->header.provider;
68 lmr->header.magic = DAPL_MAGIC_LMR;
69 lmr->header.handle_type = DAT_HANDLE_TYPE_LMR;
70 lmr->header.owner_ia = ia;
71 lmr->header.user_context.as_64 = 0;
72 lmr->header.user_context.as_ptr = NULL;
73 dapl_llist_init_entry(&lmr->header.ia_list_entry);
75 dapl_os_lock_init(&lmr->header
[all...]
/opensolaris-onvv-gate/usr/src/lib/libxcurses/src/libc/xcurses/
H A Dmknames.awk36 function header(file, array) { function
64 header("boolname.c", "boolnames");
65 header("boolcode.c", "boolcodes");
66 header("boolfnam.c", "boolfnames");
67 header("numname.c", "numnames");
68 header("numcode.c", "numcodes");
69 header("numfnam.c", "numfnames");
70 header("strname.c", "strnames");
71 header("strcode.c", "strcodes");
72 header("strfna
[all...]
/opensolaris-onvv-gate/usr/src/lib/libxcurses2/src/libc/xcurses/
H A Dmknames.awk36 function header(file, array) { function
65 header("boolname.c", "boolnames");
66 header("boolcode.c", "boolcodes");
67 header("boolfnam.c", "boolfnames");
68 header("numname.c", "numnames");
69 header("numcode.c", "numcodes");
70 header("numfnam.c", "numfnames");
71 header("strname.c", "strnames");
72 header("strcode.c", "strcodes");
73 header("strfna
[all...]
/opensolaris-onvv-gate/usr/src/pkg/manifests/
H A Dsystem-header-header-platform.mf26 set name=pkg.fmri value=pkg:/system/header/header-platform@0.5.11,5.11-0.142
H A DSUNW1394h.mf29 depend fmri=pkg:/system/header/header-firewire@0.5.11,5.11-0.133 type=require
H A DSUNWagph.mf29 depend fmri=pkg:/system/header/header-agp@0.5.11,5.11-0.133 type=require
H A DSUNWaudh.mf29 depend fmri=pkg:/system/header/header-audio@0.5.11,5.11-0.133 type=require
H A DSUNWifph.mf30 depend fmri=pkg:/system/header/header-ifp@0.5.11,5.11-0.133 type=require
H A DSUNWpiclh.mf29 depend fmri=pkg:/system/header/header-picl@0.5.11,5.11-0.133 type=require
/opensolaris-onvv-gate/usr/src/cmd/loadkeys/type_101/
H A Dneaten.sh54 header=/tmp/header.$$
59 echo "#" > $header
60 echo "$sccsid" >> $header
61 echo "#" >> $header
62 echo "# Copyright (c) `date +%Y` by Sun Microsystems, Inc." >> $header
63 echo "# All rights reserved." >> $header
64 echo "#" >> $header
74 $i >> $header
75 echo '#' >> $header
[all...]
/opensolaris-onvv-gate/usr/src/cmd/perl/5.8.4/distrib/lib/Test/Harness/t/
H A Dcallback.t20 bailout => [qw( header test test test bailout )],
21 combined => ['header', ('test') x 10],
22 descriptive => ['header', ('test') x 5 ],
23 duplicates => ['header', ('test') x 11 ],
25 other header other other )],
27 other header other other )],
28 no_nums => ['header', ('test') x 5 ],
29 out_of_order=> [('test') x 10, 'header', ('test') x 5],
30 simple => [qw( header test test test test test )],
31 simple_fail => [qw( header tes
[all...]
/opensolaris-onvv-gate/usr/src/lib/libdhcpsvc/modules/binfiles/tools/
H A Dprintnet.c52 dn_header_t header; local
71 if (read(confd, &header, sizeof (header)) != sizeof (header) ||
72 header.dnh_magic != DN_MAGIC) {
80 in_addr.s_addr = header.dnh_network;
82 in_addr.s_addr = header.dnh_netmask;
87 (void) printf("%12s: %d\n", "dirtybit", header.dnh_dirty);
88 (void) printf("%12s: %d\n", "version", header.dnh_version);
89 (void) printf("%12s: %d\n", "active image", header
101 print_hashes(int confd, dn_header_t header) argument
[all...]
/opensolaris-onvv-gate/usr/src/cmd/tic/
H A Dtic_read.c130 struct header header; local
150 read(fd, &header, sizeof (header));
153 header.magic = swap(header.magic);
154 header.name_size = swap(header.name_size);
155 header.bool_count = swap(header
[all...]
/opensolaris-onvv-gate/usr/src/lib/libcurses/screen/
H A Dobject.h121 struct header struct
/opensolaris-onvv-gate/usr/src/lib/mpapi/libmpscsi_vhci/common/
H A Ddebug_logging.c39 char header[MAX_LOG_LEN+1]; local
47 (void) memset(&header, 0, MAX_LOG_LEN+1);
52 (void) snprintf(header, MAX_LOG_LEN, "%s: %s: %s",
58 (void) vsnprintf(message, MAX_LOG_LEN, header, ap);
/opensolaris-onvv-gate/usr/src/lib/sun_sas/common/
H A Dlog.c45 char header[MAX_LOG_LEN+1]; local
52 (void) memset(&header, 0, MAX_LOG_LEN+1);
56 (void) snprintf(header, MAX_LOG_LEN, "%s: %s: %s",
60 (void) vsnprintf(message, MAX_LOG_LEN, header, ap);

Completed in 197 milliseconds

1234567891011>>