Searched refs:pb (Results 1 - 25 of 299) sorted by relevance

1234567891011>>

/netbsd-current/external/bsd/openldap/dist/servers/slapd/slapi/
H A Dslapi_pblock.c311 pblock_lock( Slapi_PBlock *pb )
313 ldap_pvt_thread_mutex_lock( &pb->pb_mutex );
317 pblock_unlock( Slapi_PBlock *pb )
319 ldap_pvt_thread_mutex_unlock( &pb->pb_mutex );
323 pblock_get_default( Slapi_PBlock *pb, int param, void **value ) argument
348 for ( i = 0; i < pb->pb_nParams; i++ ) {
349 if ( pb->pb_params[i] == param ) {
352 *((int *)value) = pb->pb_values[i].pv_integer;
355 *((long *)value) = pb->pb_values[i].pv_long_integer;
358 *value = pb
401 pblock_set_default( Slapi_PBlock *pb, int param, void *value ) argument
445 pblock_be_call( Slapi_PBlock *pb, int (*bep)(Operation *) ) argument
463 pblock_get( Slapi_PBlock *pb, int param, void **value ) argument
825 pblock_add_control( Slapi_PBlock *pb, LDAPControl *control ) argument
868 pblock_set( Slapi_PBlock *pb, int param, void *value ) argument
1332 Slapi_PBlock *pb; local
1387 slapi_pblock_get( Slapi_PBlock *pb, int arg, void *value ) argument
1393 slapi_pblock_set( Slapi_PBlock *pb, int arg, void *value ) argument
[all...]
H A Dslapi_ops.c72 Slapi_PBlock *pb = SLAPI_OPERATION_PBLOCK( op ); local
77 assert( pb != NULL );
79 slapi_pblock_get( pb, SLAPI_X_INTOP_RESULT_CALLBACK, (void **)&prc );
80 slapi_pblock_get( pb, SLAPI_X_INTOP_CALLBACK_DATA, &callback_data );
84 slapi_pblock_set( pb, SLAPI_RESCONTROLS, ctrls );
98 Slapi_PBlock *pb = SLAPI_OPERATION_PBLOCK( op ); local
103 assert( pb != NULL );
105 slapi_pblock_get( pb, SLAPI_X_INTOP_SEARCH_ENTRY_CALLBACK, (void **)&psec );
106 slapi_pblock_get( pb, SLAPI_X_INTOP_CALLBACK_DATA, &callback_data );
123 Slapi_PBlock *pb local
185 slapi_int_connection_init_pb( Slapi_PBlock *pb, ber_tag_t tag ) argument
387 slapi_int_func_internal_pb( Slapi_PBlock *pb, slap_operation_t which ) argument
578 Slapi_PBlock *pb = (Slapi_PBlock *)callback_data; local
627 slapi_search_internal_callback_pb( Slapi_PBlock *pb, void *callback_data, plugin_result_callback prc, plugin_search_entry_callback psec, plugin_referral_entry_callback prec ) argument
684 slapi_search_internal_set_pb( Slapi_PBlock *pb, const char *base, int scope, const char *filter, char **attrs, int attrsonly, LDAPControl **controls, const char *uniqueid, Slapi_ComponentId *plugin_identity, int operation_flags ) argument
725 Slapi_PBlock *pb; local
739 slapi_modify_internal_set_pb( Slapi_PBlock *pb, const char *dn, LDAPMod **mods, LDAPControl **controls, const char *uniqueid, Slapi_ComponentId *plugin_identity, int operation_flags ) argument
774 Slapi_PBlock *pb; local
786 slapi_add_internal_set_pb( Slapi_PBlock *pb, const char *dn, LDAPMod **attrs, LDAPControl **controls, Slapi_ComponentId *plugin_identity, int operation_flags ) argument
811 Slapi_PBlock *pb; local
823 slapi_add_entry_internal_set_pb( Slapi_PBlock *pb, Slapi_Entry *e, LDAPControl **controls, Slapi_ComponentId *plugin_identity, int operation_flags ) argument
843 Slapi_PBlock *pb; local
855 slapi_rename_internal_set_pb( Slapi_PBlock *pb, const char *olddn, const char *newrdn, const char *newsuperior, int deloldrdn, LDAPControl **controls, const char *uniqueid, Slapi_ComponentId *plugin_identity, int operation_flags ) argument
898 Slapi_PBlock *pb; local
911 slapi_delete_internal_set_pb( Slapi_PBlock *pb, const char *dn, LDAPControl **controls, const char *uniqueid, Slapi_ComponentId *plugin_identity, int operation_flags ) argument
943 Slapi_PBlock *pb; local
[all...]
/netbsd-current/usr.sbin/puffs/mount_9p/
H A Dninebuf.c49 p9pbuf_get_type(struct puffs_framebuf *pb) argument
53 puffs_framebuf_getdata_atoff(pb, 4, &val, 1);
58 p9pbuf_get_tag(struct puffs_framebuf *pb) argument
62 puffs_framebuf_getdata_atoff(pb, 5, &val, 2);
67 p9pbuf_get_len(struct puffs_framebuf *pb) argument
71 puffs_framebuf_getdata_atoff(pb, 0, &val, 4);
75 #define CUROFF(pb) (puffs_framebuf_telloff(pb))
77 p9pbuf_read(struct puffs_usermount *pu, struct puffs_framebuf *pb, argument
86 if ((lenstate = (CUROFF(pb) <
122 p9pbuf_write(struct puffs_usermount *pu, struct puffs_framebuf *pb, int fd, int *done) argument
172 struct puffs_framebuf *pb; local
180 p9pbuf_recycleout(struct puffs_framebuf *pb) argument
188 p9pbuf_put_1(struct puffs_framebuf *pb, uint8_t val) argument
197 p9pbuf_put_2(struct puffs_framebuf *pb, uint16_t val) argument
207 p9pbuf_put_4(struct puffs_framebuf *pb, uint32_t val) argument
217 p9pbuf_put_8(struct puffs_framebuf *pb, uint64_t val) argument
227 p9pbuf_put_data(struct puffs_framebuf *pb, const void *data, uint16_t dlen) argument
237 p9pbuf_put_str(struct puffs_framebuf *pb, const char *str) argument
244 p9pbuf_write_data(struct puffs_framebuf *pb, uint8_t *data, uint32_t dlen) argument
255 p9pbuf_get_1(struct puffs_framebuf *pb, uint8_t *val) argument
262 p9pbuf_get_2(struct puffs_framebuf *pb, uint16_t *val) argument
273 p9pbuf_get_4(struct puffs_framebuf *pb, uint32_t *val) argument
284 p9pbuf_get_8(struct puffs_framebuf *pb, uint64_t *val) argument
295 p9pbuf_get_data(struct puffs_framebuf *pb, uint8_t **dp, uint16_t *dlenp) argument
327 p9pbuf_read_data(struct puffs_framebuf *pb, uint8_t *buf, uint32_t dlen) argument
334 p9pbuf_get_str(struct puffs_framebuf *pb, char **dp, uint16_t *dlenp) argument
[all...]
H A Dfs.c67 struct puffs_framebuf *pb; local
81 pb = p9pbuf_makeout();
82 p9pbuf_put_1(pb, P9PROTO_T_VERSION);
83 p9pbuf_put_2(pb, P9PROTO_NOTAG);
84 p9pbuf_put_4(pb, p9p->maxreq);
85 p9pbuf_put_str(pb, p9p_ver2str(p9p->protover));
86 DO_IO(p9pbuf_write, pu, pb, p9p->servsock, &done, rv);
88 puffs_framebuf_recycle(pb);
89 DO_IO(p9pbuf_read, pu, pb, p9p->servsock, &done, rv);
91 if ((type = p9pbuf_get_type(pb)) !
[all...]
H A Dnineproto.c46 proto_getqid(struct puffs_framebuf *pb, struct qid9p *qid) argument
49 if (puffs_framebuf_remaining(pb) < 1+4+8)
52 p9pbuf_get_1(pb, &qid->qidtype);
53 p9pbuf_get_4(pb, &qid->qidvers);
54 p9pbuf_get_8(pb, &qid->qidpath);
110 if ((rv = (a(pb, b)))) return rv; \
115 if ((rv = p9pbuf_get_str(pb, val, strsize))) return rv; \
120 proto_getstat(struct puffs_usermount *pu, struct puffs_framebuf *pb, struct vattr *vap, argument
132 if ((rv = p9pbuf_get_2(pb, &size)))
134 if (puffs_framebuf_remaining(pb) < siz
188 proto_rerror(struct puffs_usermount *pu, struct puffs_framebuf *pb, uint32_t *_errno) argument
216 proto_handle_rerror(struct puffs_usermount *pu, struct puffs_framebuf *pb) argument
235 struct puffs_framebuf *pb; local
263 struct puffs_framebuf *pb; local
298 struct puffs_framebuf *pb; local
322 proto_make_stat(struct puffs_usermount *pu, struct puffs_framebuf *pb, const struct vattr *vap, const char *filename, enum vtype vt) argument
394 proto_expect_walk_nqids(struct puffs_usermount *pu, struct puffs_framebuf *pb, uint16_t *nqids) argument
404 proto_expect_qid(struct puffs_usermount *pu, struct puffs_framebuf *pb, uint8_t op, struct qid9p *qid) argument
414 proto_expect_stat(struct puffs_usermount *pu, struct puffs_framebuf *pb, struct vattr *va) argument
[all...]
H A Dnode.c61 p9pbuf_put_1(pb, P9PROTO_T_STAT);
62 p9pbuf_put_2(pb, tag);
63 p9pbuf_put_4(pb, p9n->fid_base);
64 GETRESPONSE(pb);
66 if (p9pbuf_get_type(pb) != P9PROTO_R_STAT) {
67 rv = proto_handle_rerror(pu, pb);
70 rv = proto_expect_stat(pu, pb, vap);
102 p9pbuf_put_1(pb, P9PROTO_T_WALK);
103 p9pbuf_put_2(pb, tag);
104 p9pbuf_put_4(pb, p9n_di
[all...]
/netbsd-current/external/bsd/tmux/dist/
H A Dpaste.c77 paste_buffer_name(struct paste_buffer *pb) argument
79 return (pb->name);
84 paste_buffer_order(struct paste_buffer *pb) argument
86 return (pb->order);
91 paste_buffer_created(struct paste_buffer *pb) argument
93 return (pb->created);
98 paste_buffer_data(struct paste_buffer *pb, size_t *size) argument
101 *size = pb->size;
102 return (pb->data);
107 paste_walk(struct paste_buffer *pb) argument
118 struct paste_buffer *pb; local
143 paste_free(struct paste_buffer *pb) argument
162 struct paste_buffer *pb, *pb1; local
207 struct paste_buffer *pb, *pb_new; local
258 struct paste_buffer *pb, *old; local
301 paste_replace(struct paste_buffer *pb, char *data, size_t size) argument
310 paste_make_sample(struct paste_buffer *pb) argument
[all...]
H A Dcmd-set-buffer.c60 struct paste_buffer *pb; local
67 pb = NULL;
69 pb = paste_get_name(bufname);
72 if (pb == NULL)
73 pb = paste_get_top(&bufname);
74 if (pb == NULL) {
78 paste_free(pb);
83 if (pb == NULL)
84 pb = paste_get_top(&bufname);
85 if (pb
[all...]
/netbsd-current/crypto/external/bsd/openssl/dist/test/helpers/
H A Dpkcs12.h68 int end_pkcs12_builder(PKCS12_BUILDER *pb);
71 void start_pkcs12(PKCS12_BUILDER *pb);
72 void end_pkcs12(PKCS12_BUILDER *pb);
73 void end_pkcs12_with_mac(PKCS12_BUILDER *pb, const PKCS12_ENC *mac);
75 void start_contentinfo(PKCS12_BUILDER *pb);
76 void end_contentinfo(PKCS12_BUILDER *pb);
77 void end_contentinfo_encrypted(PKCS12_BUILDER *pb, const PKCS12_ENC *enc);
79 void add_certbag(PKCS12_BUILDER *pb, const unsigned char *bytes, int len,
81 void add_keybag(PKCS12_BUILDER *pb, const unsigned char *bytes, int len,
83 void add_secretbag(PKCS12_BUILDER *pb, in
[all...]
H A Dpkcs12.c38 static void generate_p12(PKCS12_BUILDER *pb, const PKCS12_ENC *mac);
105 PKCS12_BUILDER *pb = OPENSSL_malloc(sizeof(PKCS12_BUILDER)); local
106 if (!TEST_ptr(pb))
109 pb->filename = filename;
110 pb->success = 1;
111 return pb;
114 int end_pkcs12_builder(PKCS12_BUILDER *pb) argument
116 int result = pb->success;
118 OPENSSL_free(pb);
123 void start_pkcs12(PKCS12_BUILDER *pb) argument
129 end_pkcs12(PKCS12_BUILDER *pb) argument
137 end_pkcs12_with_mac(PKCS12_BUILDER *pb, const PKCS12_ENC *mac) argument
146 generate_p12(PKCS12_BUILDER *pb, const PKCS12_ENC *mac) argument
273 start_contentinfo(PKCS12_BUILDER *pb) argument
279 end_contentinfo(PKCS12_BUILDER *pb) argument
290 end_contentinfo_encrypted(PKCS12_BUILDER *pb, const PKCS12_ENC *enc) argument
375 add_certbag(PKCS12_BUILDER *pb, const unsigned char *bytes, int len, const PKCS12_ATTR *attrs) argument
409 add_keybag(PKCS12_BUILDER *pb, const unsigned char *bytes, int len, const PKCS12_ATTR *attrs, const PKCS12_ENC *enc) argument
441 add_secretbag(PKCS12_BUILDER *pb, int secret_nid, const char *secret, const PKCS12_ATTR *attrs) argument
542 check_certbag(PKCS12_BUILDER *pb, const unsigned char *bytes, int len, const PKCS12_ATTR *attrs) argument
576 check_keybag(PKCS12_BUILDER *pb, const unsigned char *bytes, int len, const PKCS12_ATTR *attrs, const PKCS12_ENC *enc) argument
639 check_secretbag(PKCS12_BUILDER *pb, int secret_nid, const char *secret, const PKCS12_ATTR *attrs) argument
660 start_check_pkcs12(PKCS12_BUILDER *pb) argument
680 start_check_pkcs12_with_mac(PKCS12_BUILDER *pb, const PKCS12_ENC *mac) argument
700 start_check_pkcs12_file(PKCS12_BUILDER *pb) argument
720 start_check_pkcs12_file_with_mac(PKCS12_BUILDER *pb, const PKCS12_ENC *mac) argument
740 end_check_pkcs12(PKCS12_BUILDER *pb) argument
749 start_check_contentinfo(PKCS12_BUILDER *pb) argument
763 start_check_contentinfo_encrypted(PKCS12_BUILDER *pb, const PKCS12_ENC *enc) argument
778 end_check_contentinfo(PKCS12_BUILDER *pb) argument
[all...]
/netbsd-current/crypto/external/bsd/openssl/dist/include/internal/
H A Dasn1.h14 int asn1_d2i_read_bio(BIO *in, BUF_MEM **pb);
/netbsd-current/usr.sbin/puffs/mount_psshfs/
H A Dpsbuf.c63 psbuf_get_type(struct puffs_framebuf *pb) argument
67 puffs_framebuf_getdata_atoff(pb, SFTP_TYPEOFF, &type, 1);
72 psbuf_get_len(struct puffs_framebuf *pb) argument
76 puffs_framebuf_getdata_atoff(pb, SFTP_LENOFF, &len, 4);
81 psbuf_get_reqid(struct puffs_framebuf *pb) argument
85 puffs_framebuf_getdata_atoff(pb, SFTP_REQIDOFF, &req, 4);
89 #define CUROFF(pb) (puffs_framebuf_telloff(pb))
91 psbuf_read(struct puffs_usermount *pu, struct puffs_framebuf *pb, argument
100 if ((lenstate = READSTATE_LENGTH(CUROFF(pb))))
137 psbuf_write(struct puffs_usermount *pu, struct puffs_framebuf *pb, int fd, int *done) argument
188 struct puffs_framebuf *pb; local
196 psbuf_recycleout(struct puffs_framebuf *pb) argument
204 psbuf_put_1(struct puffs_framebuf *pb, uint8_t val) argument
213 psbuf_put_2(struct puffs_framebuf *pb, uint16_t val) argument
223 psbuf_put_4(struct puffs_framebuf *pb, uint32_t val) argument
233 psbuf_put_8(struct puffs_framebuf *pb, uint64_t val) argument
243 psbuf_put_data(struct puffs_framebuf *pb, const void *data, uint32_t dlen) argument
253 psbuf_put_str(struct puffs_framebuf *pb, const char *str) argument
260 psbuf_put_vattr(struct puffs_framebuf *pb, const struct vattr *va, const struct psshfs_ctx *pctx) argument
307 psbuf_get_1(struct puffs_framebuf *pb, uint8_t *val) argument
314 psbuf_get_2(struct puffs_framebuf *pb, uint16_t *val) argument
325 psbuf_get_4(struct puffs_framebuf *pb, uint32_t *val) argument
336 psbuf_get_8(struct puffs_framebuf *pb, uint64_t *val) argument
347 psbuf_get_str(struct puffs_framebuf *pb, char **strp, uint32_t *strlenp) argument
369 psbuf_get_vattr(struct puffs_framebuf *pb, struct vattr *vap) argument
452 expectcode(struct puffs_framebuf *pb, int value) argument
478 psbuf_expect_status(struct puffs_framebuf *pb) argument
491 psbuf_expect_handle(struct puffs_framebuf *pb, char **hand, uint32_t *handlen) argument
502 psbuf_do_data(struct puffs_framebuf *pb, uint8_t *data, uint32_t *dlen) argument
551 psbuf_expect_name(struct puffs_framebuf *pb, uint32_t *count) argument
561 psbuf_expect_attrs(struct puffs_framebuf *pb, struct vattr *vap) argument
575 psbuf_req_data(struct puffs_framebuf *pb, int type, uint32_t reqid, const void *data, uint32_t dlen) argument
585 psbuf_req_str(struct puffs_framebuf *pb, int type, uint32_t reqid, const char *str) argument
[all...]
H A Dfs.c88 struct puffs_framebuf *pb; local
98 pb = psbuf_makeout();
99 psbuf_put_1(pb, SSH_FXP_INIT);
100 psbuf_put_4(pb, SFTP_PROTOVERSION);
101 DO_IO(psbuf_write, pu, pb, fd, &done, rv);
103 puffs_framebuf_recycle(pb);
104 DO_IO(psbuf_read, pu, pb, fd, &done, rv);
105 if (psbuf_get_type(pb) != SSH_FXP_VERSION)
107 psbuf_get_type(pb)), EPROTO);
108 pctx->protover = psbuf_get_reqid(pb);
[all...]
/netbsd-current/external/gpl2/gettext/dist/gettext-tools/tests/
H A Dformat-perl-brace-18 tmpfiles="$tmpfiles f-pb-1.data"
9 cat <<\EOF > f-pb-1.data
39 tmpfiles="$tmpfiles f-pb-1-$n.in f-pb-1-$n.po"
40 cat <<EOF > f-pb-1-$n.in
43 ${XGETTEXT} -L Perl -o f-pb-1-$n.po f-pb-1-$n.in || exit 1
44 test -f f-pb-1-$n.po || exit 1
47 if grep perl-brace-format f-pb-1-$n.po > /dev/null; then
53 if grep perl-brace-format f-pb
[all...]
H A Dformat-perl-brace-28 tmpfiles="$tmpfiles f-pb-2.data"
9 cat <<\EOF > f-pb-2.data
39 tmpfiles="$tmpfiles f-pb-2-$n.po f-pb-2-$n.mo"
40 cat <<EOF > f-pb-2-$n.po
47 if ${MSGFMT} --check-format -o f-pb-2-$n.mo f-pb-2-$n.po; then
53 ${MSGFMT} --check-format -o f-pb-2-$n.mo f-pb-2-$n.po 2> /dev/null
62 cat f-pb
[all...]
/netbsd-current/external/bsd/openldap/dist/contrib/slapi-plugins/addrdnvalues/
H A Daddrdnvalues.c32 int addrdnvalues_preop_init(Slapi_PBlock *pb);
41 static int addrdnvalues_preop_add(Slapi_PBlock *pb) argument
46 if (slapi_pblock_get(pb, SLAPI_ADD_ENTRY, &e) != 0) {
54 slapi_send_ldap_result(pb, LDAP_OTHER, NULL,
65 int addrdnvalues_preop_init(Slapi_PBlock *pb) argument
67 if (slapi_pblock_set(pb, SLAPI_PLUGIN_VERSION, SLAPI_PLUGIN_VERSION_03) != 0 ||
68 slapi_pblock_set(pb, SLAPI_PLUGIN_DESCRIPTION, &pluginDescription) != 0 ||
69 slapi_pblock_set(pb, SLAPI_PLUGIN_PRE_ADD_FN, (void *)addrdnvalues_preop_add) != 0) {
/netbsd-current/external/bsd/openldap/dist/servers/slapd/back-perl/
H A Dclose.c51 PerlBackend *pb = be->be_private; local
53 ch_free( pb->pb_module_name );
54 ber_bvarray_free( pb->pb_module_path );
55 ber_bvarray_free( pb->pb_module_config );
H A Dconfig.c117 PerlBackend *pb = (PerlBackend *) c->be->be_private; local
128 if ( !pb->pb_module_name )
130 c->value_string = ch_strdup( pb->pb_module_name );
133 if ( !pb->pb_module_path )
135 ber_bvarray_dup_x( &c->rvalue_vals, pb->pb_module_path, NULL );
138 if ( !pb->pb_module_config )
140 ber_bvarray_dup_x( &c->rvalue_vals, pb->pb_module_config, NULL );
150 ch_free( pb->pb_module_name );
151 pb->pb_module_name = NULL;
155 ber_bvarray_free( pb
[all...]
/netbsd-current/sys/dev/pci/
H A Dpciconf.c274 get_io_desc(pciconf_bus_t *pb, bus_size_t size) argument
278 n = pb->niowin;
279 for (i = n; i > 0 && size > pb->pciiowin[i-1].size; i--)
280 pb->pciiowin[i] = pb->pciiowin[i-1]; /* struct copy */
281 return &pb->pciiowin[i];
285 get_mem_desc(pciconf_bus_t *pb, bus_size_t size) argument
289 n = pb->nmemwin;
290 for (i = n; i > 0 && size > pb->pcimemwin[i-1].size; i--)
291 pb
300 probe_bus(pciconf_bus_t *pb) argument
383 alloc_busno(pciconf_bus_t *parent, pciconf_bus_t *pb) argument
403 pciconf_bus_t *pb; local
537 pci_bar_is_reserved(pciconf_bus_t *pb, pciconf_dev_t *pd, int br) argument
588 pci_do_device_query(pciconf_bus_t *pb, pcitag_t tag, int dev, int func, int mode) argument
911 setup_iowins(pciconf_bus_t *pb) argument
973 setup_memwins(pciconf_bus_t *pb) argument
1136 pciconf_bus_t *pb; local
1261 configure_bus(pciconf_bus_t *pb) argument
1549 pciconf_bus_t *pb; local
[all...]
/netbsd-current/sys/compat/common/
H A Dvfs_syscalls_10.c48 real_sys_openat_10(struct pathbuf **pb) argument
51 *pb = pathbuf_create(".");
52 return (*pb == NULL ? ENOMEM : 0);
/netbsd-current/crypto/external/bsd/heimdal/dist/lib/roken/
H A Dsetprogname.c59 const char * pb; local
61 pb = strrchr((p != NULL)? p : argv0, '\\');
62 if (pb != NULL)
63 p = pb;
/netbsd-current/external/bsd/pdisk/dist/
H A DATA_media.c185 pascal SInt16 ataManager(ataPB *pb);
193 pascal SInt16 ataManager(ataPB *pb);
216 ataManager(ataPB *pb) argument
229 | STACK_ROUTINE_PARAMETER(1, SIZE_CODE(sizeof(pb))),
230 pb);
261 ataMgrInquiry pb; local
279 clear_memory((void *)&pb, sizeof(pb));
281 pb.ataPBFunctionCode = kATAMgrManagerInquiry;
282 pb
311 ataBusInquiry pb; local
375 ataIdentify pb; local
411 ataDevConfiguration pb; local
516 ataIOPB pb; local
628 ataIOPB pb; local
682 ataIOPB pb; local
740 ataIdentify pb; local
827 ataIOPB pb; local
878 ataIOPB pb; local
935 ataIOPB pb; local
979 ataIOPB pb; local
1032 ataDrvrRegister pb; local
[all...]
/netbsd-current/lib/libpuffs/
H A Drequests.c59 puffs__fsframe_read(struct puffs_usermount *pu, struct puffs_framebuf *pb, argument
70 curoff = puffs_framebuf_telloff(pb);
75 puffs_framebuf_getdata_atoff(pb, 0, &phdr, sizeof(phdr));
81 if (puffs_framebuf_reserve_space(pb, howmuch) == -1)
87 curoff = puffs_framebuf_telloff(pb);
88 if (puffs_framebuf_getwindow(pb, curoff, &win, &winlen) == -1)
100 puffs_framebuf_seekset(pb, curoff + n);
108 puffs_framebuf_seekset(pb, 0);
118 puffs__fsframe_write(struct puffs_usermount *pu, struct puffs_framebuf *pb, argument
133 if (puffs_framebuf_telloff(pb)
234 puffs__fsframe_gotframe(struct puffs_usermount *pu, struct puffs_framebuf *pb) argument
[all...]
/netbsd-current/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/
H A Dsanitizer_common_interceptors_vfork_i386.inc.S16 call .L0$pb
17 .L0$pb:
20 add $_GLOBAL_OFFSET_TABLE_+(.Ltmp0-.L0$pb), %eax
33 call .L1$pb
34 .L1$pb:
37 add $_GLOBAL_OFFSET_TABLE_+(.Ltmp1-.L1$pb), %ebx
/netbsd-current/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/
H A Dsanitizer_common_interceptors_vfork_i386.inc.S17 call .L0$pb
18 .L0$pb:
21 add $_GLOBAL_OFFSET_TABLE_+(.Ltmp0-.L0$pb), %eax
34 call .L1$pb
35 .L1$pb:
38 add $_GLOBAL_OFFSET_TABLE_+(.Ltmp1-.L1$pb), %ebx

Completed in 179 milliseconds

1234567891011>>