Searched refs:store (Results 1 - 25 of 300) sorted by relevance

1234567891011>>

/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/wget-1.12/src/
H A Dftp-opie.c2115 /* Encode 8 bytes in C as a string of English words and store them to
2119 btoe (char *store, const unsigned char *c) argument
2124 char *store_beg = store;
2126 *store = '\0';
2142 memcpy (store, &Wp[extract (cp, 0, 11)][0], 4);
2143 store += STRLEN_1_4 (store);
2144 *store++ = ' ';
2145 memcpy (store, &Wp[extract (cp, 11, 11)][0], 4);
2146 store
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/curl-7.23.1/lib/
H A Dparsedate.h28 CURLcode Curl_gmtime(time_t intime, struct tm *store);
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/curl-7.23.1/src/
H A Dtool_helpers.c68 int SetHTTPrequest(struct Configurable *config, HttpReq req, HttpReq *store) argument
70 if((*store == HTTPREQ_UNSPEC) ||
71 (*store == req)) {
72 *store = req;
H A Dtool_helpers.h28 int SetHTTPrequest(struct Configurable *config, HttpReq req, HttpReq *store);
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/persist/raw/
H A DRawStore.java21 * Provides access to the raw data in a store for use by general purpose tools.
46 private Store store; field in class:RawStore
49 * Opens an entity store for raw data access.
53 * @param storeName the name of the entity store within the given
56 * @param config the store configuration, or null to use default
65 store = new Store(env, storeName, config, true /*rawAccess*/);
74 return store.getPrimaryIndex
86 return store.getSecondaryIndex
92 * Returns the environment associated with this store.
95 return store
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/gdbm-1.8.3/
H A Ddbm.h42 extern int store ();
H A Dstore.c0 /* store.c - Add a new key/data pair to the database. */
42 store (key, content) function
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/persist/
H A DEntityStore.java33 * A store for managing persistent entity objects.
44 * as other databases not associated with an entity store.</p>
46 * <p>An entity store is based on an {@link EntityModel}: a data model which
56 * these indices to store and access entity records by key.</p>
58 * <p>Although not normally needed, you can also use the entity store along
82 private Store store; field in class:EntityStore
85 * Opens an entity store in a given environment.
89 * @param storeName the name of the entity store within the given
93 * with the store name.
95 * @param config the entity store configuratio
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/drivers/md/
H A Ddm-snap.h48 void (*destroy) (struct exception_store *store);
54 int (*read_metadata) (struct exception_store *store);
57 * Find somewhere to store the next exception.
59 int (*prepare_exception) (struct exception_store *store,
65 void (*commit_exception) (struct exception_store *store,
73 void (*drop_snapshot) (struct exception_store *store);
78 void (*fraction_full) (struct exception_store *store,
123 struct exception_store store; member in struct:dm_snapshot
140 * store.
142 int dm_create_persistent(struct exception_store *store);
[all...]
H A Ddm-exception-store.c2 * dm-exception-store.c
29 * We need to store a record of which parts of the origin have
32 * of the COW store. It makes sense therefore, to store the
92 * The top level structure for a persistent exception store.
396 static inline struct pstore *get_info(struct exception_store *store) argument
398 return (struct pstore *) store->context;
401 static void persistent_fraction_full(struct exception_store *store, argument
404 *numerator = get_info(store)->next_free * store
408 persistent_destroy(struct exception_store *store) argument
418 persistent_read_metadata(struct exception_store *store) argument
482 persistent_prepare(struct exception_store *store, struct exception *e) argument
507 persistent_commit(struct exception_store *store, struct exception *e, void (*callback) (void *, int success), void *callback_context) argument
562 persistent_drop(struct exception_store *store) argument
571 dm_create_persistent(struct exception_store *store) argument
609 transient_destroy(struct exception_store *store) argument
614 transient_read_metadata(struct exception_store *store) argument
619 transient_prepare(struct exception_store *store, struct exception *e) argument
633 transient_commit(struct exception_store *store, struct exception *e, void (*callback) (void *, int success), void *callback_context) argument
642 transient_fraction_full(struct exception_store *store, sector_t *numerator, sector_t *denominator) argument
649 dm_create_transient(struct exception_store *store) argument
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/test/scr024/src/com/sleepycat/persist/test/
H A DEvolveTest.java24 * store created by EvolveTestInit. It verifies that it can read/write/evolve
63 * is possible whether or not we can open the store further below to
79 (store.getModel(), env, true /*oldTypesExist*/);
80 caseObj.readObjects(store, false /*doUpdate*/);
105 (store.getModel(), env, true /*oldTypesExist*/);
106 caseObj.readObjects(store, false /*doUpdate*/);
110 * Open read-write to update objects and store them in evolved
115 (store.getModel(), env, true /*oldTypesExist*/);
116 caseObj.readObjects(store, true /*doUpdate*/);
118 (store
[all...]
H A DEvolveTestInit.java19 * and store containing instances of the original class. When EvolveTest is
20 * run, it will read/write/evolve these objects from the store created here.
52 caseObj.writeObjects(store);
53 caseObj.checkUnevolvedModel(store.getModel(), env);
H A DEvolveClasses.java59 private static RawObject readRaw(RawStore store, argument
64 TestCase.assertNotNull(store);
69 store.getPrimaryIndex(entityClsName);
158 void readRawObjects(RawStore store, argument
166 RawObject obj = readRaw(store, 99, NAME, 0, CASECLS, 0);
202 void readRawObjects(RawStore store, argument
210 RawObject obj = readRaw(store, 99, NAME, 0, CASECLS, 0);
236 void readRawObjects(RawStore store, argument
244 RawObject obj = readRaw(store, 99, NAME, 0, CASECLS, 0);
281 void readObjects(EntityStore store, boolea argument
297 readRawObjects(RawStore store, boolean expectEvolved, boolean expectUpdated) argument
332 readRawObjects(RawStore store, boolean expectEvolved, boolean expectUpdated) argument
382 readObjects(EntityStore store, boolean doUpdate) argument
418 readRawObjects(RawStore store, boolean expectEvolved, boolean expectUpdated) argument
475 readRawObjects(RawStore store, boolean expectEvolved, boolean expectUpdated) argument
534 readObjects(EntityStore store, boolean doUpdate) argument
550 readRawObjects(RawStore store, boolean expectEvolved, boolean expectUpdated) argument
608 readRawObjects(RawStore store, boolean expectEvolved, boolean expectUpdated) argument
672 readObjects(EntityStore store, boolean doUpdate) argument
688 readRawObjects(RawStore store, boolean expectEvolved, boolean expectUpdated) argument
752 readRawObjects(RawStore store, boolean expectEvolved, boolean expectUpdated) argument
822 readObjects(EntityStore store, boolean doUpdate) argument
871 readRawObjects(RawStore store, boolean expectEvolved, boolean expectUpdated) argument
921 readRawObjects(RawStore store, boolean expectEvolved, boolean expectUpdated) argument
973 readObjects(EntityStore store, boolean doUpdate) argument
1012 readRawObjects(RawStore store, boolean expectEvolved, boolean expectUpdated) argument
1066 readRawObjects(RawStore store, boolean expectEvolved, boolean expectUpdated) argument
1161 readObjects(EntityStore store, boolean doUpdate) argument
1195 readRawObjects(RawStore store, boolean expectEvolved, boolean expectUpdated) argument
1269 readObjects(EntityStore store, boolean doUpdate) argument
1301 readRawObjects(RawStore store, boolean expectEvolved, boolean expectUpdated) argument
1361 readObjects(EntityStore store, boolean doUpdate) argument
1393 readRawObjects(RawStore store, boolean expectEvolved, boolean expectUpdated) argument
1472 readObjects(EntityStore store, boolean doUpdate) argument
1504 readRawObjects(RawStore store, boolean expectEvolved, boolean expectUpdated) argument
1563 readObjects(EntityStore store, boolean doUpdate) argument
1600 readRawObjects(RawStore store, boolean expectEvolved, boolean expectUpdated) argument
1680 readObjects(EntityStore store, boolean doUpdate) argument
1713 readRawObjects(RawStore store, boolean expectEvolved, boolean expectUpdated) argument
1757 readRawObjects(RawStore store, boolean expectEvolved, boolean expectUpdated) argument
1794 readRawObjects(RawStore store, boolean expectEvolved, boolean expectUpdated) argument
1849 readRawObjects(RawStore store, boolean expectEvolved, boolean expectUpdated) argument
1890 readRawObjects(RawStore store, boolean expectEvolved, boolean expectUpdated) argument
1927 readRawObjects(RawStore store, boolean expectEvolved, boolean expectUpdated) argument
1964 readRawObjects(RawStore store, boolean expectEvolved, boolean expectUpdated) argument
2001 readRawObjects(RawStore store, boolean expectEvolved, boolean expectUpdated) argument
2038 readRawObjects(RawStore store, boolean expectEvolved, boolean expectUpdated) argument
2075 readRawObjects(RawStore store, boolean expectEvolved, boolean expectUpdated) argument
2112 readRawObjects(RawStore store, boolean expectEvolved, boolean expectUpdated) argument
2149 readRawObjects(RawStore store, boolean expectEvolved, boolean expectUpdated) argument
2186 readRawObjects(RawStore store, boolean expectEvolved, boolean expectUpdated) argument
2223 readRawObjects(RawStore store, boolean expectEvolved, boolean expectUpdated) argument
2260 readRawObjects(RawStore store, boolean expectEvolved, boolean expectUpdated) argument
2297 readRawObjects(RawStore store, boolean expectEvolved, boolean expectUpdated) argument
2334 readRawObjects(RawStore store, boolean expectEvolved, boolean expectUpdated) argument
2371 readRawObjects(RawStore store, boolean expectEvolved, boolean expectUpdated) argument
2408 readRawObjects(RawStore store, boolean expectEvolved, boolean expectUpdated) argument
2445 readRawObjects(RawStore store, boolean expectEvolved, boolean expectUpdated) argument
2482 readRawObjects(RawStore store, boolean expectEvolved, boolean expectUpdated) argument
2520 readRawObjects(RawStore store, boolean expectEvolved, boolean expectUpdated) argument
2558 readRawObjects(RawStore store, boolean expectEvolved, boolean expectUpdated) argument
2596 readRawObjects(RawStore store, boolean expectEvolved, boolean expectUpdated) argument
2634 readRawObjects(RawStore store, boolean expectEvolved, boolean expectUpdated) argument
2672 readRawObjects(RawStore store, boolean expectEvolved, boolean expectUpdated) argument
2710 readRawObjects(RawStore store, boolean expectEvolved, boolean expectUpdated) argument
2748 readRawObjects(RawStore store, boolean expectEvolved, boolean expectUpdated) argument
2786 readRawObjects(RawStore store, boolean expectEvolved, boolean expectUpdated) argument
2824 readRawObjects(RawStore store, boolean expectEvolved, boolean expectUpdated) argument
2862 readRawObjects(RawStore store, boolean expectEvolved, boolean expectUpdated) argument
2900 readRawObjects(RawStore store, boolean expectEvolved, boolean expectUpdated) argument
2938 readRawObjects(RawStore store, boolean expectEvolved, boolean expectUpdated) argument
2976 readRawObjects(RawStore store, boolean expectEvolved, boolean expectUpdated) argument
3013 readRawObjects(RawStore store, boolean expectEvolved, boolean expectUpdated) argument
3048 readRawObjects(RawStore store, boolean expectEvolved, boolean expectUpdated) argument
3083 readRawObjects(RawStore store, boolean expectEvolved, boolean expectUpdated) argument
3118 readRawObjects(RawStore store, boolean expectEvolved, boolean expectUpdated) argument
3153 readRawObjects(RawStore store, boolean expectEvolved, boolean expectUpdated) argument
3188 readRawObjects(RawStore store, boolean expectEvolved, boolean expectUpdated) argument
3223 readRawObjects(RawStore store, boolean expectEvolved, boolean expectUpdated) argument
3258 readRawObjects(RawStore store, boolean expectEvolved, boolean expectUpdated) argument
3293 readRawObjects(RawStore store, boolean expectEvolved, boolean expectUpdated) argument
3328 readRawObjects(RawStore store, boolean expectEvolved, boolean expectUpdated) argument
3363 readRawObjects(RawStore store, boolean expectEvolved, boolean expectUpdated) argument
3398 readRawObjects(RawStore store, boolean expectEvolved, boolean expectUpdated) argument
3433 readRawObjects(RawStore store, boolean expectEvolved, boolean expectUpdated) argument
3485 readRawObjects(RawStore store, boolean expectEvolved, boolean expectUpdated) argument
3527 readObjects(EntityStore store, boolean doUpdate) argument
3557 readRawObjects(RawStore store, boolean expectEvolved, boolean expectUpdated) argument
3595 readObjects(EntityStore store, boolean doUpdate) argument
3625 readRawObjects(RawStore store, boolean expectEvolved, boolean expectUpdated) argument
3911 readObjects(EntityStore store, boolean doUpdate) argument
3939 checkSecondaries(EntityStore store, PrimaryIndex<Integer, AllowFieldTypeChanges> index) argument
4075 readRawObjects(RawStore store, boolean expectEvolved, boolean expectUpdated) argument
4368 readObjects(EntityStore store, boolean doUpdate) argument
4403 readRawObjects(RawStore store, boolean expectEvolved, boolean expectUpdated) argument
4478 readObjects(EntityStore store, boolean doUpdate) argument
4513 readRawObjects(RawStore store, boolean expectEvolved, boolean expectUpdated) argument
4654 readObjects(EntityStore store, boolean doUpdate) argument
4689 readRawObjects(RawStore store, boolean expectEvolved, boolean expectUpdated) argument
4794 readObjects(EntityStore store, boolean doUpdate) argument
4826 readRawObjects(RawStore store, boolean expectEvolved, boolean expectUpdated) argument
4947 readObjects(EntityStore store, boolean doUpdate) argument
4983 readRawObjects(RawStore store, boolean expectEvolved, boolean expectUpdated) argument
5094 readObjects(EntityStore store, boolean doUpdate) argument
5183 readRawObjects(RawStore store, boolean expectEvolved, boolean expectUpdated) argument
5276 readObjects(EntityStore store, boolean doUpdate) argument
5308 readRawObjects(RawStore store, boolean expectEvolved, boolean expectUpdated) argument
5438 readObjects(EntityStore store, boolean doUpdate) argument
5472 readRawObjects(RawStore store, boolean expectEvolved, boolean expectUpdated) argument
5531 readObjects(EntityStore store, boolean doUpdate) argument
5564 readRawObjects(RawStore store, boolean expectEvolved, boolean expectUpdated) argument
5668 readObjects(EntityStore store, boolean doUpdate) argument
5701 readRawObjects(RawStore store, boolean expectEvolved, boolean expectUpdated) argument
5793 readObjects(EntityStore store, boolean doUpdate) argument
5852 readRawObjects(RawStore store, boolean expectEvolved, boolean expectUpdated) argument
5918 readObjects(EntityStore store, boolean doUpdate) argument
5978 readRawObjects(RawStore store, boolean expectEvolved, boolean expectUpdated) argument
6052 readObjects(EntityStore store, boolean doUpdate) argument
6087 readRawObjects(RawStore store, boolean expectEvolved, boolean expectUpdated) argument
[all...]
H A DNegativeTest.java38 private EntityStore store; field in class:NegativeTest
47 store = new EntityStore(env, "test", config);
53 store.close();
54 store = null;
61 if (store != null) {
63 store.close();
67 store = null;
78 store.getPrimaryIndex
110 store.getPrimaryIndex
120 store
[all...]
H A DJoinTest.java42 private EntityStore store; field in class:JoinTest
49 * Opens the store.
58 store = new EntityStore(env, "test", config);
60 primary = store.getPrimaryIndex(Integer.class, MyEntity.class);
61 sec1 = store.getSecondaryIndex(primary, Integer.class, "k1");
62 sec2 = store.getSecondaryIndex(primary, Integer.class, "k2");
63 sec3 = store.getSecondaryIndex(primary, Integer.class, "k3");
67 * Closes the store.
72 store.close();
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/examples_java/src/persist/gettingStarted/
H A DSimpleDA.java13 public SimpleDA(EntityStore store) argument
17 pIdx = store.getPrimaryIndex(
24 sIdx = store.getSecondaryIndex(
H A DSimpleStorePut.java19 private EntityStore store; field in class:SimpleStorePut
22 // The setup() method opens the environment and store
34 // Open the environment and entity store
36 store = new EntityStore(envmnt, "EntityStore", storeConfig);
43 // Close our environment and store.
47 store.close();
57 // Open the data accessor. This is used to store
59 sda = new SimpleDA(store);
61 // Instantiate and store some entity classes
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/arch/sh/kernel/cpu/sh3/
H A Dex.S31 .long exception_error ! tlb miss store
34 .long exception_error ! tlb prot violation store
36 .long exception_error ! address error store /* 100 */
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/test/scr024/src/com/sleepycat/collections/test/
H A DSecondaryDeadlockTest.java62 private Database store; field in class:SecondaryDeadlockTest
77 store = TestStore.BTREE_UNIQ.open(env, "store.db");
78 index = TestStore.BTREE_UNIQ.openIndex(store, "index.db");
79 storeMap = new StoredSortedMap(store,
98 if (store != null) {
100 store.close();
114 store = null;
199 store.close();
200 store
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/drivers/pci/hotplug/
H A Drpadlpar_sysfs.c30 ssize_t (*store)(struct dlpar_io_attr *dlpar_attr, const char *buf, member in struct:dlpar_io_attr
50 return dlpar_attr->store ?
51 dlpar_attr->store(dlpar_attr, buf, nbytes) : -EIO;
56 .store = dlpar_attr_store,
104 .store = add_slot_store,
110 .store = remove_slot_store,
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/hmac/
H A Dhmac.c82 __db_chksum(hdr, data, data_len, mac_key, store)
87 u_int8_t *store;
107 memset(store, 0, sumlen);
109 store = ((HDR*)hdr)->chksum;
115 memcpy(store, &hash4, sumlen);
117 __db_hmac(mac_key, data, data_len, store);
119 ((int *)store)[0] ^= ((HDR *)hdr)->prev;
120 ((int *)store)[1] ^= ((HDR *)hdr)->len;
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/include/linux/
H A Dsysdev.h44 ssize_t (*store)(struct sysdev_class *, const char *, size_t); member in struct:sysdev_class_attribute
51 .store = _store, \
98 ssize_t (*store)(struct sys_device *, const char *, size_t); member in struct:sysdev_attribute
107 .store = _store, \
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/fs/ocfs2/cluster/
H A Dsys.c39 ssize_t (*store)(const char *buf, size_t count); member in struct:o2cb_attribute
66 .store = o2cb_store,
99 if (o2cb_attr->store)
100 return o2cb_attr->store(buffer, count);
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/libgcrypt-1.5.0/mpi/power/
H A Dmpih-lshift.S57 stu 7,-4(9) # store previous result during read latency
60 Lend: stu 7,-4(9) # store 2:nd least significant limb
62 st 7,-4(9) # store it
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/examples_java/src/persist/
H A DPersonExample.java110 public PersonAccessor(EntityStore store) argument
113 personBySsn = store.getPrimaryIndex(
116 personByParentSsn = store.getSecondaryIndex(
119 personByEmailAddresses = store.getSecondaryIndex(
122 personByEmployerIds = store.getSecondaryIndex(
125 employerById = store.getPrimaryIndex(
128 employerByName = store.getSecondaryIndex(
148 private EntityStore store; field in class:PersonExample
162 /* Open a transactional entity store. */
166 store
[all...]

Completed in 370 milliseconds

1234567891011>>