/illumos-gate/usr/src/tools/smatch/src/ |
H A D | allocate.c | 53 struct allocation_blob *blob = desc->blobs; in drop_all_allocations() local 60 while (blob) { in drop_all_allocations() 61 struct allocation_blob *next = blob->next; in drop_all_allocations() 62 blob_free(blob, desc->chunking); in drop_all_allocations() 63 blob = next; in drop_all_allocations() 77 struct allocation_blob *blob = desc->blobs; in allocate() local 101 if (!blob || blob->left < size) { in allocate() 109 newblob->next = blob; in allocate() 110 blob = newblob; in allocate() 114 blob->left = chunking - offset; in allocate() [all …]
|
H A D | smatch_slist.c | 340 static void free_all_sm_states(struct allocation_blob *blob) in free_all_sm_states() argument 345 while (offset < blob->offset) { in free_all_sm_states() 346 free_sm_state((struct sm_state *)(blob->data + offset)); in free_all_sm_states() 355 struct allocation_blob *blob = desc->blobs; in free_every_single_sm_state() local 362 while (blob) { in free_every_single_sm_state() 363 struct allocation_blob *next = blob->next; in free_every_single_sm_state() 364 free_all_sm_states(blob); in free_every_single_sm_state() 365 blob_free(blob, desc->chunking); in free_every_single_sm_state() 366 blob = next; in free_every_single_sm_state()
|
H A D | smatch_ranges.c | 2045 struct allocation_blob *blob = desc->blobs; in free_data_info_allocs() local 2055 while (blob) { in free_data_info_allocs() 2056 struct allocation_blob *next = blob->next; in free_data_info_allocs() 2057 blob_free(blob, desc->chunking); in free_data_info_allocs() 2058 blob = next; in free_data_info_allocs()
|
/illumos-gate/usr/src/lib/libsmbfs/smb/ |
H A D | connect.c | 134 struct mbdata blob; in smb_iod_connect() local 138 memset(&blob, 0, sizeof (blob)); in smb_iod_connect() 200 err = mb_init_sz(&blob, nego_len); in smb_iod_connect() 203 nego_buf = blob.mb_top->m_data; in smb_iod_connect() 222 blob.mb_top->m_len = nego_len; in smb_iod_connect() 234 err = smb_ssnsetup_spnego(ctx, &blob); in smb_iod_connect() 248 mb_done(&blob); in smb_iod_connect()
|
H A D | krb5ssp.c | 111 uchar_t *blob = NULL; /* result */ in krb5ssp_tkt2gtok() local 118 if ((blob = malloc(bloblen)) == NULL) { in krb5ssp_tkt2gtok() 123 b = blob; in krb5ssp_tkt2gtok() 129 assert(b + tktlen == blob + bloblen); in krb5ssp_tkt2gtok() 132 *gtokp = blob; in krb5ssp_tkt2gtok()
|
/illumos-gate/usr/src/uts/common/inet/ |
H A D | snmpcom.h | 39 extern int snmp_append_data(mblk_t *mpdata, char *blob, int len); 41 char *blob, int len);
|
H A D | snmpcom.c | 92 snmp_append_data(mblk_t *mpdata, char *blob, int len) in snmp_append_data() argument 105 bcopy(blob, (char *)mpdata->b_wptr, len); in snmp_append_data() 115 snmp_append_data2(mblk_t *mpdata, mblk_t **last_mpp, char *blob, int len) in snmp_append_data2() argument 131 bcopy(blob, (char *)(*last_mpp)->b_wptr, len); in snmp_append_data2()
|
/illumos-gate/usr/src/lib/krb5/plugins/preauth/pkinit/ |
H A D | pkinit_srv.c | 78 (krb5_context, void **blob); 81 (krb5_context context, void *blob); 91 (krb5_context context, void **blob, const char **realmnames); 94 (krb5_context context, void *blob); 1285 pkinit_server_plugin_init(krb5_context context, void **blob, in pkinit_server_plugin_init() argument 1327 *blob = realm_contexts; in pkinit_server_plugin_init() 1354 pkinit_server_plugin_fini(krb5_context context, void *blob) in pkinit_server_plugin_fini() argument 1356 pkinit_kdc_context *realm_contexts = blob; in pkinit_server_plugin_fini()
|
H A D | pkinit_clnt.c | 119 static int pkinit_client_plugin_init(krb5_context context, void **blob); 120 static void pkinit_client_plugin_fini(krb5_context context, void *blob); 1348 pkinit_client_plugin_init(krb5_context context, void **blob) argument 1382 *blob = ctx; 1394 pkinit_client_plugin_fini(krb5_context context, void *blob) argument 1396 struct _pkinit_context *ctx = (struct _pkinit_context *)blob;
|
/illumos-gate/usr/src/uts/sun4v/io/n2rng/ |
H A D | n2rng_entp_setup.c | 104 #define EXTRACTBIAS(blob, osc) (((blob) >> (2 * (osc))) & 0x3) argument
|
/illumos-gate/usr/src/lib/gss_mechs/mech_krb5/krb5/os/ |
H A D | locate_kdc.c | 411 void *blob; in module_locate_server() local 418 code = vtbl->init(ctx, &blob); in module_locate_server() 422 code = vtbl->lookup(blob, svc, realm->data, socktype, family, in module_locate_server() 424 vtbl->fini(blob); in module_locate_server()
|
/illumos-gate/usr/src/lib/pkcs11/pkcs11_tpm/common/ |
H A D | tpm_specific.c | 497 BYTE *blob, pub_blob[1024]; in set_public_modulus() local 503 TSS_TSPATTRIB_KEYBLOB_PUBLIC_KEY, &blob_size, &blob); in set_public_modulus() 511 result = Trspi_UnloadBlob_PUBKEY(&offset, blob, &pub_key); in set_public_modulus() 518 Tspi_Context_FreeMemory(hContext, blob); in set_public_modulus() 2029 BYTE *blob; in token_wrap_auth_data() local 2057 TSS_TSPATTRIB_ENCDATABLOB_BLOB, &blob_size, &blob))) { in token_wrap_auth_data() 2063 if ((rc = build_attribute(CKA_ENC_AUTHDATA, blob, blob_size, in token_wrap_auth_data() 2069 if ((rc = build_attribute(CKA_ENC_AUTHDATA, blob, in token_wrap_auth_data()
|
/illumos-gate/usr/src/lib/libsqlite/test/ |
H A D | sort.test | 337 SELECT b FROM t4 UNION SELECT b FROM v4 ORDER BY 1 COLLATE blob;
|
H A D | table.test | 288 begin blob,
|
H A D | misc1.test | 383 # if the identifier contains "text", "blob", or "clob" and is numeric
|
H A D | format3.test | 231 CREATE TABLE t1(w int, x text, y blob);
|
/illumos-gate/usr/src/boot/efi/include/IndustryStandard/ |
H A D | Tpm12.h | 1185 UINT8 *blob; member
|
/illumos-gate/usr/src/cmd/spell/ |
H A D | list | 2662 blob
|
/illumos-gate/usr/src/cmd/look/ |
H A D | words | 2663 blob
|