Searched refs:hp (Results 1 - 25 of 424) sorted by path

1234567891011>>

/macosx-10.10/AppleUSBCDCDriver-4205.2.2/AppleUSBCDC/Classes/
H A DAppleUSBCDC.cpp1477 OSDictionary *hp; local
1481 hp = OSDynamicCast(OSDictionary,propertyDict->getObject("HiddenProperties"));
1482 if (hp == NULL)
1486 OSString *connectionState = OSDynamicCast(OSString, hp->getObject("CONNECT_STATE"));
/macosx-10.10/BerkeleyDB-21/db/db/
H A Ddb_dispatch.c461 #define FIND_GENERATION(hp, txnid, gen) do { \
463 for (__i = 0; __i <= (hp)->generation; __i++) \
465 if ((hp)->gen_array[__i].txn_min < \
466 (hp)->gen_array[__i].txn_max ? \
467 ((txnid) >= (hp)->gen_array[__i].txn_min && \
468 (txnid) <= (hp)->gen_array[__i].txn_max) : \
469 ((txnid) >= (hp)->gen_array[__i].txn_min || \
470 (txnid) <= (hp)->gen_array[__i].txn_max)) \
472 DB_ASSERT(env, __i <= (hp)->generation); \
473 gen = (hp)
[all...]
H A Ddb_pr.c1154 u_int8_t *p, *hp; local
1177 hp = (u_int8_t *)hbuf; len-- > 0; ++p) {
1178 *hp++ = hex[(u_int8_t)(*p & 0xf0) >> 4];
1179 *hp++ = hex[*p & 0x0f];
1181 *hp = '\0';
/macosx-10.10/BerkeleyDB-21/db/dbinc/
H A Ddb_dispatch.h55 #define DB_TXNLIST_MASK(hp, n) (n % hp->nslots)
H A Dmp.h298 #define MP_GET_BUCKET(env, mfp, pgno, infopp, hp, ret) do { \
311 (hp) = R_ADDR(*(infopp), __t_mp->htab); \
312 (hp) = &(hp)[__t_bucket]; \
313 MUTEX_LOCK(env, (hp)->mtx_hash); \
317 (mfp), (pgno), (infopp), &(hp)); \
/macosx-10.10/BerkeleyDB-21/db/dist/
H A Dconfig.guess565 echo m68k-hp-bsd
568 echo m68k-hp-bsd4.4
633 # hppa2.0w-hp-hpux* has a 64-bit kernel and a compiler generating
634 # 32-bit code. hppa64-hp-hpux* has the same kernel and a compiler
638 # => hppa2.0w-hp-hpux11.23
640 # => hppa64-hp-hpux11.23
650 echo ${HP_ARCH}-hp-hpux${HPUX_REV}
654 echo ia64-hp-hpux${HPUX_REV}
688 echo hppa1.1-hp-bsd
691 echo hppa1.0-hp
[all...]
H A Dconfig.sub147 -unicom* | -ibm* | -next | -hp | -isi* | -apollo | -altos* | \
591 basic_machine=m68k-hp
594 basic_machine=m68k-hp
598 basic_machine=m68k-hp
602 basic_machine=hppa1.0-hp
605 basic_machine=m68000-hp
608 basic_machine=m68k-hp
611 basic_machine=hppa1.0-hp
614 basic_machine=hppa1.1-hp
617 # FIXME: really hppa2.0-hp
[all...]
H A Dconfigure21922 hp*) _JNI_INC_SUBDIRS="hp-ux";;
[all...]
/macosx-10.10/BerkeleyDB-21/db/examples_c/ex_rep/base/
H A Drep_net.c426 struct hostent *hp; local
433 if ((hp = gethostbyname(remotehost)) == NULL) {
444 memcpy((char *)&si.sin_addr, hp->h_addr, hp->h_length);
/macosx-10.10/BerkeleyDB-21/db/mp/
H A Dmp_alloc.c36 DB_MPOOL_HASH *dbht, *hp, *hp_end, *hp_saved, *hp_tmp; local
151 hp = &dbht[c_mp->last_checked++];
152 if (hp >= hp_end) {
154 hp = &dbht[c_mp->last_checked++];
226 if (SH_TAILQ_FIRST(&hp->hash_bucket, __bh) == NULL)
231 MUTEX_LOCK(env, hp->mtx_hash);
252 SH_TAILQ_FOREACH(t1bhp, &hp->hash_bucket, hq, __bh) {
302 retry_obsolete: if (BH_OBSOLETE(t3bhp, hp->old_reader, vlsn)) {
308 env, &hp->old_reader)) != 0)
330 if (c_mp->lru_reset != 0 && c_mp->lru_reset <= hp
[all...]
H A Dmp_bh.c28 __memp_bhwrite(dbmp, hp, mfp, bhp, open_extents)
30 DB_MPOOL_HASH *hp;
48 return (__memp_pgwrite(env, NULL, hp, bhp));
168 ret = __memp_pgwrite(env, dbmfp, hp, bhp);
193 __memp_pgread(dbmfp, hp, bhp, can_create)
195 DB_MPOOL_HASH *hp;
215 MUTEX_UNLOCK(env, hp->mtx_hash);
270 err: MUTEX_LOCK(env, hp->mtx_hash);
283 if (F_ISSET(hp, IO_WAITER)) {
284 F_CLR(hp, IO_WAITE
[all...]
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_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_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_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_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...]
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_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_resize.c36 DB_MPOOL_HASH *hp; local
76 hp = R_ADDR(infop, c_mp->htab);
77 hp = &hp[bucket - region * mp->htab_buckets];
79 MUTEX_LOCK(env, hp->mtx_hash);
85 MUTEX_UNLOCK(env, hp->mtx_hash);
99 MUTEX_UNLOCK(env, hp->mtx_hash);
104 *hpp = hp;
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_sync.c46 DB_MPOOL_HASH *hp; local
53 hp = R_ADDR(dbmp->reginfo, mp->ftab);
54 for (i = 0; i < MPOOL_FILE_BUCKETS; i++, hp++) {
55 MUTEX_LOCK(env, hp->mtx_hash);
56 SH_TAILQ_FOREACH(mfp, &hp->hash_bucket, q, __mpoolfile) {
63 MUTEX_UNLOCK(env, hp->mtx_hash);
259 DB_MPOOL_HASH *hp; local
306 hp = R_ADDR(&dbmp->reginfo[n_cache], c_mp->htab);
307 for (i = 0; i < c_mp->htab_buckets; i++, hp++) {
316 if (SH_TAILQ_FIRST(&hp
778 DB_MPOOL_HASH *hp; local
839 DB_MPOOL_HASH *hp; local
[all...]
/macosx-10.10/BerkeleyDB-21/db/rpc_server/c/
H A Ddb_server_util.c691 home_entry *hp, *homep; local
694 if ((ret = __os_malloc(NULL, sizeof(home_entry), &hp)) != 0)
696 if ((ret = __os_malloc(NULL, strlen(home)+1, &hp->home)) != 0)
698 memcpy(hp->home, home, strlen(home)+1);
699 hp->dir = home;
700 hp->passwd = NULL;
703 * to assure hp->name points to the last component.
705 hp->name = __db_rpath(home);
706 if (hp->name != NULL) {
707 *(hp
739 home_entry *hp; local
764 home_entry *hp; local
780 home_entry *hp; local
[all...]
/macosx-10.10/BerkeleyDB-21/db/rpc_server/cxx/
H A Ddb_server_cxxutil.cpp628 home_entry *hp, *homep; local
631 if ((ret = __os_malloc(NULL, sizeof(home_entry), &hp)) != 0)
633 if ((ret = __os_malloc(NULL, strlen(home)+1, &hp->home)) != 0)
635 memcpy(hp->home, home, strlen(home)+1);
636 hp->dir = home;
637 hp->passwd = NULL;
640 * to assure hp->name points to the last component.
642 hp->name = __db_rpath(home);
643 if (hp->name != NULL) {
644 *(hp
673 home_entry *hp; local
694 home_entry *hp; local
710 home_entry *hp; local
[all...]
/macosx-10.10/CPANInternal-159.1/Term-ReadLine-Perl-1.0303/ReadLine/
H A Dreadline.pm742 ($^O =~ /^hp\W?ux/i ? (
/macosx-10.10/Chess-310.6/sjeng/
H A Ddepcomp52 if test "$depmode" = hp; then
122 hp)

Completed in 356 milliseconds

1234567891011>>