Searched refs:PK (Results 1 - 10 of 10) sorted by relevance

/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/persist/
H A DKeysIndex.java30 class KeysIndex<SK,PK> extends BasicIndex<SK,PK> {
33 private SortedMap<SK,PK> map;
38 Class<PK> pkeyClass,
43 new DataValueAdapter<PK>(pkeyClass, pkeyBinding));
52 public PK get(SK key)
58 public PK get(Transaction txn, SK key, LockMode lockMode)
68 return (PK) pkeyBinding.entryToObject(pkeyEntry);
74 public Map<SK,PK> map() {
78 public synchronized SortedMap<SK,PK> sortedMa
[all...]
H A DSubIndex.java41 class SubIndex<PK,E> implements EntityIndex<PK,E> {
43 private SecondaryIndex<?,PK,E> secIndex;
54 private ValueAdapter<PK> keyAdapter;
56 private SortedMap<PK,E> map;
58 <SK> SubIndex(SecondaryIndex<SK,PK,E> secIndex,
75 PrimaryIndex<PK,E> priIndex = secIndex.getPrimaryIndex();
80 keyAdapter = new PrimaryKeyValueAdapter<PK>
85 public boolean contains(PK key)
91 public boolean contains(Transaction txn, PK ke
[all...]
H A DEntityStore.java188 public <PK,E> PrimaryIndex<PK,E> getPrimaryIndex(Class<PK> primaryKeyClass,
227 public <SK,PK,E> SecondaryIndex<SK,PK,E>
228 getSecondaryIndex(PrimaryIndex<PK,E> primaryIndex,
270 public <SK,PK,E1,E2 extends E1> SecondaryIndex<SK,PK,E2>
271 getSubclassIndex(PrimaryIndex<PK,E1> primaryIndex,
H A DSecondaryIndex.java84 * <SK,PK,E>} or in the example {@code <String,Long,Employee>} while a {@link
85 * PrimaryIndex} has only two type parameters {@code <PK,E>} or {@code
110 * key (SK) to primary key (PK), or in the example, from the String department
118 * (PK) to entity (E), for the subset of entities having a given secondary key
767 public class SecondaryIndex<SK,PK,E> extends BasicIndex<SK,E> {
773 private EntityIndex<SK,PK> keysIndex;
806 PrimaryIndex<PK,E> primaryIndex,
845 public PrimaryIndex<PK,E> getPrimaryIndex() {
886 public synchronized EntityIndex<SK,PK> keysIndex()
905 keysIndex = new KeysIndex<SK,PK>
[all...]
H A DPrimaryIndex.java38 * key type (PK) to the entity type (E).</p>
201 public class PrimaryIndex<PK,E> extends BasicIndex<PK,E> {
205 private SortedMap<PK,E> map;
234 Class<PK> keyClass,
266 public Class<PK> getKeyClass() {
502 public E get(PK key)
508 public E get(Transaction txn, PK key, LockMode lockMode)
524 public Map<PK,E> map() {
528 public synchronized SortedMap<PK,
[all...]
H A DEntityJoin.java67 public class EntityJoin<PK,E> {
69 private PrimaryIndex<PK,E> primary;
77 public EntityJoin(PrimaryIndex<PK,E> index) {
91 public <SK> void addCondition(SecondaryIndex<SK,PK,E> index, SK key) {
158 public ForwardCursor<PK> keys()
181 public ForwardCursor<PK> keys(Transaction txn, CursorConfig config)
184 return new JoinForwardCursor<PK>(txn, config, true);
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/arch/m68knommu/platform/68VZ328/
H A Dconfig.c81 PKSEL |= PK(3); /* select pin as I/O */
82 PKDIR |= PK(3); /* select pin as output */
83 PKDATA |= PK(3); /* set pin high */
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/persist/impl/
H A DStore.java280 public synchronized <PK,E> PrimaryIndex<PK,E>
281 getPrimaryIndex(Class<PK> primaryKeyClass,
294 PrimaryIndex<PK,E> priIndex = priIndexMap.get(entityClassName);
517 public synchronized <SK,PK,E1,E2 extends E1> SecondaryIndex<SK,PK,E2>
518 getSecondaryIndex(PrimaryIndex<PK,E1> primaryIndex,
556 SecondaryIndex<SK,PK,E2> secIndex = secIndexMap.get(secName);
630 private <SK,PK,E1,E2 extends E1> SecondaryIndex<SK,PK,E
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/include/asm-m68knommu/
H A DMC68328.h623 #define PK(x) (1 << (x)) macro
H A DMC68VZ328.h542 #define PK(x) (1 << (x)) macro
544 #define PK_DATAREADY 0x01 /* Use ~DATA_READY as PK[0] */
545 #define PK_PWM2 0x01 /* Use PWM2 as PK[0] */
546 #define PK_R_W 0x02 /* Use R/W as PK[1] */
547 #define PK_LDS 0x04 /* Use /LDS as PK[2] */
548 #define PK_UDS 0x08 /* Use /UDS as PK[3] */
549 #define PK_LD4 0x10 /* Use LD4 as PK[4] */
550 #define PK_LD5 0x20 /* Use LD5 as PK[5] */
551 #define PK_LD6 0x40 /* Use LD6 as PK[6] */
552 #define PK_LD7 0x80 /* Use LD7 as PK[
[all...]

Completed in 200 milliseconds