Searched refs:blob (Results 1 - 24 of 24) sorted by relevance

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/linux/
H A Dgetcpu.h15 unsigned long blob[128 / sizeof(long)]; member in struct:getcpu_cache
H A Ddebugfs.h54 struct debugfs_blob_wrapper *blob);
125 struct debugfs_blob_wrapper *blob)
123 debugfs_create_blob(const char *name, mode_t mode, struct dentry *parent, struct debugfs_blob_wrapper *blob) argument
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/libsmb/
H A Dntlmssp_parse.c37 B = data blob (pointer + length)
38 b = data blob in header (pointer + length)
43 BOOL msrpc_gen(DATA_BLOB *blob, argument
94 *blob = data_blob(NULL, head_size + data_size);
105 SSVAL(blob->data, head_ofs, n*2); head_ofs += 2;
106 SSVAL(blob->data, head_ofs, n*2); head_ofs += 2;
107 SIVAL(blob->data, head_ofs, data_ofs); head_ofs += 4;
108 push_string(NULL, blob->data+data_ofs, s, n*2, STR_UNICODE|STR_NOALIGN);
114 SSVAL(blob->data, head_ofs, n); head_ofs += 2;
115 SSVAL(blob
185 msrpc_parse(const DATA_BLOB *blob, const char *format, ...) argument
[all...]
H A Dclispnego.c79 (OID), and a mechToken (a security blob) ...
84 DATA_BLOB gen_negTokenInit(const char *OID, DATA_BLOB blob) argument
103 asn1_write_OctetString(&data,blob.data,blob.length);
126 BOOL spnego_parse_negTokenInit(DATA_BLOB blob, argument
134 asn1_load(&data, blob);
172 generate a negTokenTarg packet given a list of OIDs and a security blob
174 DATA_BLOB gen_negTokenTarg(const char *OIDs[], DATA_BLOB blob) argument
196 asn1_write_OctetString(&data,blob.data,blob
219 parse_negTokenTarg(DATA_BLOB blob, char *OIDs[ASN1_MAX_OIDS], DATA_BLOB *secblob) argument
291 spnego_parse_krb5_wrap(DATA_BLOB blob, DATA_BLOB *ticket, uint8 tok_id[2]) argument
356 spnego_parse_challenge(const DATA_BLOB blob, DATA_BLOB *chal1, DATA_BLOB *chal2) argument
400 spnego_gen_auth(DATA_BLOB blob) argument
425 spnego_parse_auth(DATA_BLOB blob, DATA_BLOB *auth) argument
495 spnego_parse_auth_response(DATA_BLOB blob, NTSTATUS nt_status, DATA_BLOB *auth) argument
[all...]
H A Dasn1.c207 BOOL asn1_load(ASN1_DATA *data, DATA_BLOB blob) argument
210 data->data = memdup(blob.data, blob.length);
215 data->length = blob.length;
394 /* read a octet string blob */
395 BOOL asn1_read_OctetString(ASN1_DATA *data, DATA_BLOB *blob) argument
398 ZERO_STRUCTP(blob);
405 *blob = data_blob(NULL, len);
406 asn1_read(data, blob->data, len);
H A Dcliconnect.c427 Send a extended security session setup blob
430 static BOOL cli_session_setup_blob_send(struct cli_state *cli, DATA_BLOB blob) argument
450 SSVAL(cli->outbuf,smb_vwv7,blob.length);
453 memcpy(p, blob.data, blob.length);
454 p += blob.length;
462 Send a extended security session setup blob, returning a reply blob.
501 Send a extended security session setup blob, returning a reply blob
504 cli_session_setup_blob(struct cli_state *cli, DATA_BLOB blob) argument
580 DATA_BLOB blob = data_blob(NULL, 0); local
706 DATA_BLOB blob; local
[all...]
H A Dspnego.c278 ssize_t write_spnego_data(DATA_BLOB *blob, SPNEGO_DATA *spnego) argument
301 *blob = data_blob(asn1.data, asn1.length);
H A Dclifile.c1364 NTSTATUS cli_raw_ioctl(struct cli_state *cli, int fnum, uint32 code, DATA_BLOB *blob) argument
1386 *blob = data_blob(NULL, 0);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/lib/
H A Dafs_settoken.c53 DATA_BLOB blob; local
82 blob = base64_decode_data_blob(t);
84 if ( (blob.data == NULL) ||
85 (blob.length != sizeof(result_ct.HandShakeKey) )) {
86 DEBUG(10, ("invalid key: %x/%d\n", (uint32)blob.data,
87 blob.length));
91 memcpy(result_ct.HandShakeKey, blob.data, blob.length);
93 data_blob_free(&blob);
130 blob
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/libads/
H A Dsasl.c33 DATA_BLOB blob, chal1, chal2, auth; local
53 msrpc_gen(&blob, "CddB",
60 msg1 = gen_negTokenTarg(mechs, blob);
61 data_blob_free(&blob);
72 blob = data_blob(scred->bv_val, scred->bv_len);
76 if (!spnego_parse_challenge(blob, &chal1, &chal2)) {
82 data_blob_free(&blob);
93 msrpc_gen(&blob, "CdBBUUUBd",
105 auth = spnego_gen_auth(blob);
107 data_blob_free(&blob);
140 DATA_BLOB blob = data_blob(NULL, 0); local
173 DATA_BLOB blob; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/powerpc/boot/
H A Dflatdevtree.h90 void ft_begin(struct ft_cxt *cxt, void *blob, unsigned int max_size,
92 int ft_open(struct ft_cxt *cxt, void *blob, unsigned int max_size,
98 void ft_merge_blob(struct ft_cxt *cxt, void *blob);
H A Dflatdevtree.c504 void ft_begin(struct ft_cxt *cxt, void *blob, unsigned int max_size, argument
507 struct boot_param_header *bph = blob;
527 cxt->rgn[FT_RSVMAP].start = p = blob + HDR_SIZE;
532 cxt->rgn[FT_STRINGS].start = blob + max_size;
540 cxt->str_anchor = blob;
543 /* open up an existing blob to be examined or modified */
544 int ft_open(struct ft_cxt *cxt, void *blob, unsigned int max_size, argument
548 struct boot_param_header *bph = blob;
570 cxt->rgn[FT_RSVMAP].start = blob + be32_to_cpu(bph->off_mem_rsvmap);
572 cxt->rgn[FT_STRUCT].start = blob
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/utils/
H A Dnet_ads_cldap.c203 DATA_BLOB blob; local
208 blob = data_blob(NULL, 8192);
210 ret = read(sock, blob.data, blob.length);
216 blob.length = ret;
218 asn1_load(&data, blob);
270 data_blob_free(&blob);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/debugfs/
H A Dfile.c306 struct debugfs_blob_wrapper *blob = file->private_data; local
307 return simple_read_from_buffer(user_buf, count, ppos, blob->data,
308 blob->size);
317 * debugfs_create_blob - create a debugfs file that is used to read and write a binary blob
323 * @blob: a pointer to a struct debugfs_blob_wrapper which contains a pointer
324 * to the blob data and the size of the data.
327 * @blob->data as a binary blob. If the @mode variable is so set it can be
342 struct debugfs_blob_wrapper *blob)
344 return debugfs_create_file(name, mode, parent, blob,
340 debugfs_create_blob(const char *name, mode_t mode, struct dentry *parent, struct debugfs_blob_wrapper *blob) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/smbd/
H A Dnegprot.c166 Generate the spnego negprot reply blob. Return the number of bytes used.
171 DATA_BLOB blob; local
214 blob = spnego_gen_negTokenInit(guid, OIDs_plain, "NONE");
217 blob = spnego_gen_negTokenInit(guid, OIDs_krb5, principal);
220 memcpy(p, blob.data, blob.length);
221 len = blob.length;
222 data_blob_free(&blob);
H A Dsesssetup.c79 Send a security blob via a session setup reply.
83 DATA_BLOB blob, NTSTATUS nt_status)
92 SSVAL(outbuf, smb_vwv3, blob.length);
96 memcpy(p, blob.data, blob.length);
97 p += blob.length;
439 /* parse out the OIDs and the first sec blob */
576 /* pull the spnego blob */
82 reply_sesssetup_blob(connection_struct *conn, char *outbuf, DATA_BLOB blob, NTSTATUS nt_status) argument
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/x86_64/kernel/
H A Dvsyscall.c212 if (tcache && tcache->blob[0] == (j = __jiffies)) {
213 p = tcache->blob[1];
222 tcache->blob[0] = j;
223 tcache->blob[1] = p;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/powerpc/platforms/powermac/
H A Dpfunc_core.c264 const void *blob = pmf_next_blob(cmd, bytes); local
267 LOG_BLOB("pmf: data: \n", blob, bytes);
269 PMF_PARSE_CALL(write_i2c, cmd, h, bytes, blob);
306 const void *blob = pmf_next_blob(cmd, bytes); local
309 LOG_BLOB("pmf: data: \n", blob, bytes);
311 PMF_PARSE_CALL(write_cfg, cmd, h, offset, bytes, blob);
349 const void *blob = pmf_next_blob(cmd, bytes); local
353 LOG_BLOB("pmf: data: \n", blob, bytes);
355 PMF_PARSE_CALL(write_i2c_sub, cmd, h, subaddr, bytes, blob);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/scsi/qla2xxx/
H A Dqla_os.c2617 struct fw_blob *blob; local
2619 blob = NULL;
2621 blob = &qla_fw_blobs[FW_ISP21XX];
2623 blob = &qla_fw_blobs[FW_ISP22XX];
2625 blob = &qla_fw_blobs[FW_ISP2300];
2627 blob = &qla_fw_blobs[FW_ISP2322];
2629 blob = &qla_fw_blobs[FW_ISP24XX];
2633 if (blob->fw)
2636 if (request_firmware(&blob->fw, blob
[all...]
H A Dqla_init.c3717 struct fw_blob *blob; local
3719 /* Load firmware blob. */
3720 blob = qla2x00_request_firmware(ha);
3721 if (!blob) {
3732 fwcode = (uint16_t *)blob->fw->data;
3736 if (blob->fw->size < 8 * sizeof(uint16_t)) {
3739 blob->fw->size);
3755 seg = blob->segs;
3763 if (blob->fw->size < fwclen) {
3766 "(%Zd)!\n", blob
3819 struct fw_blob *blob; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/rpc_parse/
H A Dparse_misc.c1014 Copies the blob data.
1017 void init_unistr2_from_datablob(UNISTR2 *str, DATA_BLOB *blob) argument
1023 str->uni_str_len = blob->length / sizeof(uint16);
1026 if (blob->length) {
1027 str->buffer = (uint16 *) memdup(blob->data, blob->length);
1031 if ((str->buffer == NULL) && (blob->length > 0)) {
H A Dparse_samr.c5570 DATA_BLOB blob = base64_decode_data_blob(mung_dial); local
5631 init_unistr2_from_datablob(&usr->uni_munged_dial, &blob);
5634 data_blob_free(&blob);
6254 DATA_BLOB blob = base64_decode_data_blob(munged_dial); local
6256 init_unistr2_from_datablob(&usr->uni_munged_dial, &blob);
6258 data_blob_free(&blob);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/kernel/
H A Dsys.c2273 get_user(t0, &cache->blob[0]);
2274 get_user(t1, &cache->blob[1]);
2277 put_user(t0, &cache->blob[0]);
2278 put_user(t1, &cache->blob[1]);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/torture/
H A Dtorture.c4230 DATA_BLOB blob; local
4247 status = cli_raw_ioctl(cli, fnum, 0x2d0000 | (0x0420<<2), &blob);
4250 status = cli_raw_ioctl(cli, fnum, IOCTL_QUERY_JOB_INFO, &blob);
4258 status = cli_raw_ioctl(cli, fnum, code, &blob);
4261 printf("ioctl 0x%x OK : %d bytes\n", code, blob.length);
4262 data_blob_free(&blob);

Completed in 171 milliseconds