Searched refs:entity (Results 1 - 25 of 71) sorted by relevance

123

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/isdn/hardware/eicon/
H A Dum_idi.h13 int divas_um_idi_delete_entity(int adapter_nr, void *entity);
24 int diva_um_idi_read(void *entity,
29 int diva_um_idi_write(void *entity,
34 int diva_user_mode_idi_ind_ready(void *entity, void *os_handle);
35 void *diva_um_id_get_os_context(void *entity);
37 int divas_um_idi_entity_assigned(void *entity);
38 int divas_um_idi_entity_start_remove(void *entity);
40 void diva_um_idi_start_wdog(void *entity);
41 void diva_um_idi_stop_wdog(void *entity);
H A Ddivasi.c79 static int remove_entity(void *entity);
467 DBG_ERR(("entity removal watchdog"))
471 ** If application exits without entity removal this function will remove
472 ** entity and block until removal is complete
474 static int remove_entity(void *entity) argument
479 diva_um_idi_stop_wdog(entity);
481 if (!entity) {
482 DBG_FTL(("Zero entity on remove"))
488 diva_um_id_get_os_context(entity))) {
489 DBG_FTL(("Zero entity o
554 diva_um_idi_start_wdog(void *entity) argument
566 diva_um_idi_stop_wdog(void *entity) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/bind/tuple/
H A DTupleTupleMarshalledKeyCreator.java32 * @param binding is the binding used for the tuple-tuple entity.
54 MarshalledTupleKeyEntity entity = (MarshalledTupleKeyEntity)
57 return entity.marshalSecondaryKey(keyName, indexKeyOutput);
64 MarshalledTupleKeyEntity entity = (MarshalledTupleKeyEntity)
66 if (entity.nullifyForeignKey(keyName)) {
67 binding.objectToData(entity, dataOutput);
H A DTupleTupleMarshalledBinding.java16 * <code>MarshalledTupleKeyEntity</code> interfaces of the entity class.
19 * interface to convert between the data entry and entity object. It calls the
21 * the key entry and the entity object. These two interfaces must both be
22 * implemented by the entity class.</p>
33 * <p>The given class is used to instantiate entity objects using
39 * @param cls is the class of the entity objects.
45 // The entity class will be used to instantiate the entity object.
60 // This "tricky" binding returns the stored data as the entity, but
73 MarshalledTupleKeyEntity entity
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/bind/serial/
H A DTupleSerialMarshalledBinding.java17 * <code>MarshalledTupleKeyEntity</code> interface of the entity class.
20 * entity class to convert between the key/data entry and entity object.</p>
22 * <p> The binding is "tricky" in that it uses the entity class for both the
23 * stored data entry and the combined entity object. To do this, the entity's
53 * the entity object.
63 /* Creates the entity by combining the stored key and data.
64 * This "tricky" binding returns the stored data as the entity, but
67 MarshalledTupleKeyEntity entity
[all...]
H A DTupleSerialMarshalledKeyCreator.java31 * @param binding is the binding used for the tuple-serial entity.
60 MarshalledTupleKeyEntity entity = (MarshalledTupleKeyEntity)
63 return entity.marshalSecondaryKey(keyName, indexKeyOutput);
69 MarshalledTupleKeyEntity entity = (MarshalledTupleKeyEntity)
72 return entity.nullifyForeignKey(keyName) ? dataInput : null;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/examples_java/src/collections/ship/entity/
H A DShipmentData.java9 package collections.ship.entity;
15 * entity.
H A DPartKey.java9 package collections.ship.entity;
14 * A PartKey serves as the key in the key/data pair for a part entity.
H A DShipmentKey.java9 package collections.ship.entity;
14 * A ShipmentKey serves as the key in the key/data pair for a shipment entity.
H A DSupplierKey.java9 package collections.ship.entity;
14 * A SupplierKey serves as the key in the key/data pair for a supplier entity.
H A DWeight.java9 package collections.ship.entity;
H A DShipment.java9 package collections.ship.entity;
12 * A Shipment represents the combined key/data pair for a shipment entity.
H A DSupplierData.java9 package collections.ship.entity;
15 * entity.
H A DPartData.java9 package collections.ship.entity;
14 * A PartData serves as the value in the key/value pair for a part entity.
H A DSupplier.java9 package collections.ship.entity;
12 * A Supplier represents the combined key/data pair for a supplier entity.
H A DPart.java9 package collections.ship.entity;
12 * A Part represents the combined key/data pair for a part entity.
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/persist/impl/
H A DPersistEntityBinding.java18 * A persistence entity binding for a given entity class.
30 * Creates a key binding for a given entity class.
40 ("Not an entity class: " + entityClassName);
63 * Creates the instance, reads the entity key first to track visited
64 * entities correctly, then reads the data and returns the entity.
66 * This is a special case of EntityInput.readObject for a top level entity.
70 * - The resulting entity is not added to the visited object set; entities
71 * cannot be referenced by another (or the same) entity.
87 Object entity
92 objectToData(Object entity, DatabaseEntry data) argument
107 writeEntity(Format format, Catalog catalog, Object entity, DatabaseEntry data, boolean rawAccess) argument
118 objectToKey(Object entity, DatabaseEntry key) argument
136 getValidFormat(Object entity) argument
[all...]
H A DPersistKeyAssigner.java45 public boolean assignPrimaryKey(Object entity, DatabaseEntry key) argument
54 * the entity object.
56 if (entityFormat.isPriKeyNullOrZero(entity, rawAccess)) {
64 entityFormat.getReader().readPriKey(entity, input, rawAccess);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/persist/
H A DPrimaryIndex.java32 * The primary index for an entity class and its primary key.
38 * key type (PK) to the entity type (E).</p>
40 * <p>The {@link Entity} annotation may be used to define an entity class and
61 * <p>To obtain the {@code PrimaryIndex} for a given entity class, call {@link
63 * primary key class and the entity class. For example:</p>
79 * for the instances of a particular entity class. Entities are inserted and
81 * {@link #put} methods. The {@link #put} method will insert the entity if no
82 * entity with the same primary key already exists. If an entity with the same
83 * primary key does exist, it will update the entity an
312 put(E entity) argument
334 put(Transaction txn, E entity) argument
399 putNoReturn(E entity) argument
420 putNoReturn(Transaction txn, E entity) argument
446 putNoOverwrite(E entity) argument
468 putNoOverwrite(Transaction txn, E entity) argument
485 assignKey(E entity, DatabaseEntry keyEntry) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gnulib-local/lib/libxml/
H A Dentities.c91 * xmlFreeEntity : clean-up an entity record.
94 xmlFreeEntity(xmlEntityPtr entity) argument
98 if (entity == NULL)
101 if (entity->doc != NULL)
102 dict = entity->doc->dict;
105 if ((entity->children) && (entity->owner == 1) &&
106 (entity == (xmlEntityPtr) entity->children->parent))
107 xmlFreeNodeList(entity
744 xmlFreeEntityWrapper(xmlEntityPtr entity, const xmlChar *name ATTRIBUTE_UNUSED) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/libxml2-2.7.2/
H A Dentities.c91 * xmlFreeEntity : clean-up an entity record.
94 xmlFreeEntity(xmlEntityPtr entity) argument
98 if (entity == NULL)
101 if (entity->doc != NULL)
102 dict = entity->doc->dict;
105 if ((entity->children) && (entity->owner == 1) &&
106 (entity == (xmlEntityPtr) entity->children->parent))
107 xmlFreeNodeList(entity
800 xmlFreeEntityWrapper(xmlEntityPtr entity, const xmlChar *name ATTRIBUTE_UNUSED) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-tools/gnulib-lib/libxml/
H A Dentities.c91 * xmlFreeEntity : clean-up an entity record.
94 xmlFreeEntity(xmlEntityPtr entity) argument
98 if (entity == NULL)
101 if (entity->doc != NULL)
102 dict = entity->doc->dict;
105 if ((entity->children) && (entity->owner == 1) &&
106 (entity == (xmlEntityPtr) entity->children->parent))
107 xmlFreeNodeList(entity
744 xmlFreeEntityWrapper(xmlEntityPtr entity, const xmlChar *name ATTRIBUTE_UNUSED) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/collections/
H A DStoredValueSet.java24 * an entity value binding is used are all elements guaranteed to be unique.
60 * Creates a value set entity view of a {@link Database}.
65 * key/value buffers and entity value objects.
90 * Adds the specified entity to this set if it is not already present
94 * @param entity is the entity to be added.
96 * @return true if the entity was added, that is the key-value pair
97 * represented by the entity was not previously present in the collection.
100 * if the collection is indexed, or if an entity binding is not used.
105 public boolean add(Object entity) { argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/test/scr024/src/com/sleepycat/persist/test/
H A DSequenceTest.java97 SequenceEntity entity = (SequenceEntity) entityCls.newInstance();
98 Class keyCls = entity.getKeyClass();
102 index.putNoReturn(entity);
104 assertEquals(seq, entity.getKey());
106 index.putNoReturn(entity);
107 assertEquals(seq, entity.getKey());
109 entity.nullifyKey();
110 index.putNoReturn(entity);
112 assertEquals(seq, entity.getKey());
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/examples_java/src/collections/ship/marshal/
H A DSampleViews.java91 // StoredValueSet classes, which provide additional methods. The entity
121 * Return an entity set view of the part storage container.
129 * Return an entity set view of the supplier storage container.
137 * Return an entity set view of the shipment storage container.
219 * to a combined to an entity object representation. To do this, it calls
220 * the MarshalledEnt interface implemented by the entity class.
222 * <p> The binding is "tricky" in that it uses the entity class for both
223 * the stored data entry and the combined entity object. To do this,
224 * entity's key field(s) are transient and are set by the binding after the
238 // The entity clas
[all...]

Completed in 186 milliseconds

123