Searched refs:hp (Results 26 - 50 of 195) sorted by relevance

12345678

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/mp/
H A Dmp_mvcc.c92 DB_MPOOL_HASH *hp; local
115 MP_GET_BUCKET(env, mfp, pgno, &infop, hp, ret);
122 SH_TAILQ_FOREACH(bhp, &hp->hash_bucket, hq, __bh) {
130 MUTEX_UNLOCK(env, hp->mtx_hash);
148 __memp_bh_freeze(dbmp, infop, hp, bhp, need_frozenp)
151 DB_MPOOL_HASH *hp;
183 MUTEX_UNLOCK(env, hp->mtx_hash);
203 MUTEX_LOCK(env, hp->mtx_hash);
221 nbucket = (u_int32_t)(hp - (DB_MPOOL_HASH *)R_ADDR(infop, c_mp->htab));
316 SH_TAILQ_INSERT_BEFORE(&hp
[all...]
H A Dmp_fset.c33 DB_MPOOL_HASH *hp; local
97 MP_GET_BUCKET(env, dbmfp->mfp, pgno, &infop, hp, ret);
103 MUTEX_UNLOCK(env, hp->mtx_hash);
109 ++hp->hash_page_dirty;
112 MUTEX_UNLOCK(env, hp->mtx_hash);
H A Dmp_fget.c115 DB_MPOOL_HASH *hp; local
140 hp = NULL;
237 MP_GET_BUCKET(env, mfp, *pgnoaddr, &infop, hp, ret);
245 SH_TAILQ_FOREACH(bhp, &hp->hash_bucket, hq, __bh) {
299 MUTEX_UNLOCK(env, hp->mtx_hash);
311 if (!F_ISSET(hp, IO_WAITER)) {
312 F_SET(hp, IO_WAITER);
313 MUTEX_LOCK(env, hp->mtx_io);
315 STAT(++hp->hash_io_wait);
318 MUTEX_UNLOCK(env, hp
[all...]
H A Dmp_fput.c70 DB_MPOOL_HASH *hp; local
123 MP_GET_BUCKET(env, mfp, bhp->pgno, &infop, hp, ret);
136 MUTEX_UNLOCK(env, hp->mtx_hash);
181 MUTEX_UNLOCK(env, hp->mtx_hash);
248 MUTEX_UNLOCK(env, hp->mtx_hash);
272 DB_MPOOL_HASH *hp; local
284 for (hp = R_ADDR(infop, c_mp->htab),
285 bucket = 0; bucket < c_mp->htab_buckets; ++hp, ++bucket) {
292 if (SH_TAILQ_FIRST(&hp->hash_bucket, __bh) == NULL) {
297 MUTEX_LOCK(env, hp
[all...]
H A Dmp_region.c183 DB_MPOOL_HASH *htab, *hp; local
273 hp = &htab[i];
274 hp->mtx_hash = (mtx_base == MUTEX_INVALID) ? MUTEX_INVALID :
276 hp->mtx_io = (mtx_base == MUTEX_INVALID) ? MUTEX_INVALID :
278 SH_TAILQ_INIT(&hp->hash_bucket);
279 hp->hash_page_dirty = 0;
281 hp->hash_io_wait = 0;
282 hp->hash_frozen = hp->hash_thawed = hp
454 DB_MPOOL_HASH *hp; local
[all...]
H A Dmp_fopen.c103 DB_MPOOL_HASH *hp; local
143 hp = R_ADDR(dbmp->reginfo, mp->ftab);
171 hp += bucket;
179 MUTEX_LOCK(env, hp->mtx_hash);
181 __memp_mpf_find(env, dbmfp, hp, path, flags,&mfp);
182 MUTEX_UNLOCK(env, hp->mtx_hash);
336 check: MUTEX_LOCK(env, hp->mtx_hash);
337 if ((ret = __memp_mpf_find(env, dbmfp, hp, path, flags, &mfp) != 0))
343 SH_TAILQ_INSERT_HEAD(&hp->hash_bucket, mfp, q, __mpoolfile);
370 MUTEX_UNLOCK(env, hp
949 DB_MPOOL_HASH *hp; local
1039 DB_MPOOL_HASH *hp; local
[all...]
H A Dmp_stat.c700 DB_MPOOL_HASH *hp; local
714 for (hp = R_ADDR(reginfo, c_mp->htab),
715 bucket = 0; bucket < c_mp->htab_buckets; ++hp, ++bucket) {
716 MUTEX_LOCK(env, hp->mtx_hash);
717 if ((bhp = SH_TAILQ_FIRST(&hp->hash_bucket, __bh)) != NULL) {
720 (u_long)bucket, (u_long)hp->hash_io_wait,
721 (u_long)hp->hash_page_dirty);
722 if (hp->hash_frozen != 0)
724 (u_long)hp->hash_frozen,
725 (u_long)hp
818 DB_MPOOL_HASH *hp; local
888 DB_MPOOL_HASH *hp; local
[all...]
H A Dmp_method.c476 DB_MPOOL_HASH *hp, *nhp; local
489 COMPQUIET(hp, NULL);
504 hp = R_ADDR(dbmp->reginfo, mp->ftab);
528 hp += FNBUCKET(fullold, strlen(fullold));
535 hp += FNBUCKET(fileid, DB_FILE_ID_LEN);
537 if (nhp != NULL && nhp < hp)
539 MUTEX_LOCK(env, hp->mtx_hash);
540 if (nhp != NULL && nhp > hp)
560 SH_TAILQ_FOREACH(mfp, &hp->hash_bucket, q, __mpoolfile) {
601 if (inmem && hp !
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/char/
H A Dhvc_console.h61 extern int __devexit hvc_remove(struct hvc_struct *hp);
H A Dhvc_iseries.c56 struct hvc_struct *hp; member in struct:port_info
208 struct hvc_struct *hp; local
220 hp = hvc_alloc(vdev->unit_address, vdev->irq, &hvc_get_put_ops,
222 if (IS_ERR(hp))
223 return PTR_ERR(hp);
224 pi->hp = hp;
233 struct hvc_struct *hp = pi->hp; local
235 return hvc_remove(hp);
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/net/sunrpc/
H A Dsvcauth.c136 struct auth_domain *hp; local
144 hlist_for_each_entry(hp, np, head, hash) {
145 if (strcmp(hp->name, name)==0) {
146 kref_get(&hp->ref);
148 return hp;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/libbb/
H A Dinet_common.c16 struct hostent *hp; local
41 hp = gethostbyname(name);
42 if (hp != NULL) {
43 memcpy(&s_in->sin_addr, hp->h_addr_list[0],
71 hp = gethostbyname(name);
72 if (hp == NULL) {
75 memcpy(&s_in->sin_addr, hp->h_addr_list[0], sizeof(struct in_addr));
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/flex/MISC/
H A Dalloca.c177 register header *hp; /* Traverses linked list. */ local
179 for (hp = last_alloca_header; hp != NULL;)
180 if ((STACK_DIR > 0 && hp->h.deep > depth)
181 || (STACK_DIR < 0 && hp->h.deep < depth))
183 register header *np = hp->h.next;
185 free ((pointer) hp); /* Collect garbage. */
187 hp = np; /* -> next header. */
192 last_alloca_header = hp; /* -> last valid storage. */
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/scsi/
H A Dsg.c187 static int sg_u_iovec(sg_io_hdr_t * hp, int sg_num, int ind,
335 sg_io_hdr_t *hp; local
406 hp = &srp->header;
415 old_hdr->reply_len = (int) hp->timeout;
417 old_hdr->pack_id = hp->pack_id;
419 ((srp->data.cmd_opcode >= 0xc0) && (12 == hp->cmd_len)) ? 1 : 0;
420 old_hdr->target_status = hp->masked_status;
421 old_hdr->host_status = hp->host_status;
422 old_hdr->driver_status = hp->driver_status;
423 if ((CHECK_CONDITION & hp
483 sg_io_hdr_t *hp = &srp->header; local
528 sg_io_hdr_t *hp; local
627 sg_io_hdr_t *hp; local
698 sg_io_hdr_t *hp = &srp->header; local
1622 sg_io_hdr_t *hp = &srp->header; local
1794 sg_io_hdr_t *hp = &srp->header; local
1892 sg_io_hdr_t *hp = &srp->header; local
1966 sg_u_iovec(sg_io_hdr_t * hp, int sg_num, int ind, int wr_xf, int *countp, unsigned char __user **up) argument
2024 sg_io_hdr_t *hp = &srp->header; local
2868 const sg_io_hdr_t *hp; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/net/ipv6/netfilter/
H A Dnf_conntrack_proto_icmpv6.c36 struct icmp6hdr _hdr, *hp; local
38 hp = skb_header_pointer(skb, dataoff, sizeof(_hdr), &_hdr);
39 if (hp == NULL)
41 tuple->dst.u.icmp.type = hp->icmp6_type;
42 tuple->src.u.icmp.id = hp->icmp6_identifier;
43 tuple->dst.u.icmp.code = hp->icmp6_code;
141 struct icmp6hdr _hdr, *hp; local
149 hp = skb_header_pointer(skb, icmp6off, sizeof(_hdr), &_hdr);
150 if (hp == NULL) {
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/curl-7.23.1/source/lib/
H A Dsocks.c154 Curl_addrinfo *hp=NULL; local
171 hp=dns->addr;
172 if(hp) {
175 Curl_printable_address(hp, buf, sizeof(buf));
186 hp = NULL; /* fail! */
191 if(!hp) {
575 Curl_addrinfo *hp=NULL; local
597 hp=dns->addr;
598 if(hp) {
601 Curl_printable_address(hp, bu
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libavformat/
H A Dos_support.c66 struct hostent *hp; local
69 hp = gethostbyname(hostname);
70 if (!hp)
72 memcpy(sin_addr, hp->h_addr_list[0], sizeof(struct in_addr));
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/netatalk-2.2.0/etc/afpd/
H A Dnfsquota.c69 struct hostent *hp; local
74 if ((hp = gethostbyname(vol->v_gvs)) == NULL)
78 memcpy(&server_addr.sin_addr, hp->h_addr, hp->h_length);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/netatalk-2.2.5/etc/afpd/
H A Dnfsquota.c69 struct hostent *hp; local
74 if ((hp = gethostbyname(vol->v_gvs)) == NULL)
78 memcpy(&server_addr.sin_addr, hp->h_addr, hp->h_length);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/curl-7.23.1/source/CMake/
H A DCurlTests.c130 struct hostent * hp; local
135 hp = gethostbyaddr_r(address, length, type, &h,
155 struct hostent * hp; local
160 hp = gethostbyaddr_r(address, length, type, &h,
179 struct hostent * hp; local
186 buffer, 8192, &hp, &h_errnop);
205 struct hostent * hp; local
212 buffer, 8192, &hp, &h_errnop);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/sparc64/mm/
H A Dtsb.c208 struct hv_tsb_descr *hp = &mm->context.tsb_descr[tsb_idx]; local
212 hp->pgsz_idx = HV_PGSZ_IDX_BASE;
216 hp->pgsz_idx = HV_PGSZ_IDX_HUGE;
222 hp->assoc = 1;
223 hp->num_ttes = tsb_bytes / 16;
224 hp->ctx_idx = 0;
227 hp->pgsz_mask = HV_PGSZ_MASK_BASE;
231 hp->pgsz_mask = HV_PGSZ_MASK_HUGE;
237 hp->tsb_base = tsb_paddr;
238 hp
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/net/netfilter/
H A Dnf_conntrack_proto_udp.c33 struct udphdr _hdr, *hp; local
36 hp = skb_header_pointer(skb, dataoff, sizeof(_hdr), &_hdr);
37 if (hp == NULL)
40 tuple->src.u.udp.port = hp->source;
41 tuple->dst.u.udp.port = hp->dest;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/net/ipv4/netfilter/
H A Dnf_conntrack_proto_icmp.c30 struct icmphdr _hdr, *hp; local
32 hp = skb_header_pointer(skb, dataoff, sizeof(_hdr), &_hdr);
33 if (hp == NULL)
36 tuple->dst.u.icmp.type = hp->type;
37 tuple->src.u.icmp.id = hp->un.echo.id;
38 tuple->dst.u.icmp.code = hp->code;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/net/bluetooth/
H A Dhci_core.c918 int hci_register_proto(struct hci_proto *hp) argument
922 BT_DBG("%p name %s id %d", hp, hp->name, hp->id);
924 if (hp->id >= HCI_MAX_PROTO)
929 if (!hci_proto[hp->id])
930 hci_proto[hp->id] = hp;
940 int hci_unregister_proto(struct hci_proto *hp) argument
944 BT_DBG("%p name %s id %d", hp, h
1301 register struct hci_proto *hp; local
1338 register struct hci_proto *hp; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/char/agp/
H A DMakefile12 obj-$(CONFIG_AGP_HP_ZX1) += hp-agp.o

Completed in 245 milliseconds

12345678