Searched refs:get (Results 1 - 25 of 920) sorted by relevance

1234567891011>>

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/php_db4/samples/
H A Dsimple_counter.php10 $counter = $db->get("counter");
H A Dtransactional_counter.php15 $counter = $db->get("counter");
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/arm/mm/
H A Dabort-ev7.S25 mrc p15, 0, r1, c5, c0, 0 @ get FSR
26 mrc p15, 0, r0, c6, c0, 0 @ get FAR
H A Dabort-ev4.S22 mrc p15, 0, r1, c5, c0, 0 @ get FSR
23 mrc p15, 0, r0, c6, c0, 0 @ get FAR
H A Dabort-ev4t.S23 mrc p15, 0, r1, c5, c0, 0 @ get FSR
24 mrc p15, 0, r0, c6, c0, 0 @ get FAR
H A Dabort-ev5t.S23 mrc p15, 0, r1, c5, c0, 0 @ get FSR
24 mrc p15, 0, r0, c6, c0, 0 @ get FAR
H A Dabort-ev5tj.S23 mrc p15, 0, r1, c5, c0, 0 @ get FSR
24 mrc p15, 0, r0, c6, c0, 0 @ get FAR
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/db/
H A DLogCursor.java63 logc.get(lsn, data, DbConstants.DB_CURRENT));
92 logc.get(lsn, data, DbConstants.DB_NEXT));
119 logc.get(lsn, data, DbConstants.DB_FIRST));
146 logc.get(lsn, data, DbConstants.DB_LAST));
175 logc.get(lsn, data, DbConstants.DB_PREV));
201 logc.get(lsn, data, DbConstants.DB_SET));
H A DCursor.java209 dbc.get(key, data, DbConstants.DB_CURRENT |
248 dbc.get(key, data, DbConstants.DB_FIRST |
286 dbc.get(key, data, DbConstants.DB_LAST |
331 dbc.get(key, data, DbConstants.DB_NEXT |
370 dbc.get(key, data, DbConstants.DB_NEXT_DUP |
414 dbc.get(key, data, DbConstants.DB_NEXT_NODUP |
458 dbc.get(key, data, DbConstants.DB_PREV |
496 dbc.get(key, data, DbConstants.DB_PREV_DUP |
539 dbc.get(key, data, DbConstants.DB_PREV_NODUP |
575 dbc.get(DatabaseEntr
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/test/
H A Dtest061.tcl85 set ret [eval {$db get} -txn $txn $gflags {$key}]
86 error_check_good get $ret [list [list $key [pad_data $method $data]]]
92 set ret [eval {$db get} $gflags {$key}]
93 error_check_good get $ret {}
106 set ret [eval {$db get} -txn $txn $gflags {$key}]
107 error_check_good get $ret [list [list $key [pad_data $method $data]]]
113 set ret [eval {$db get} $gflags {$key}]
114 error_check_good get $ret [list [list $key [pad_data $method $data]]]
127 set ret [eval {$db get} -txn $txn $gflags {$key}]
128 error_check_good get
[all...]
H A Dtest052.tcl81 # get db order of keys
82 for {set i 1; set ret [$dbc get -first]} { [llength $ret] != 0} { \
83 set ret [$dbc get -next]} {
91 # get key in middle of page, call this the nth set curr to it
94 set ret [$dbc get -set $k]
104 [lindex [lindex [$dbc get -current] 0] 1] $darray($i)
106 [lindex [lindex [$dbc get -current] 0] 0] $keys([expr $nkeys/2 - 1])
111 set ret [$dbc get -set $keys($i)]
112 error_check_bad dbc:get [llength $ret] 0
113 error_check_good dbc:get
[all...]
H A Dtest057.tcl10 # TEST put. Make sure the cursor can't get the new item.
81 for {set d [$curs get -first] } {[llength $d] != 0 } \
82 {set d [$curs get -next] } {
96 set r [$curs get -set $key_set(1)]
107 # Now check the get current on the cursor.
108 error_check_good curs_get:del [$curs get -current] ""
114 # Do a get
115 set r [eval {$db get} $txn {$key_set(1)}]
116 error_check_good get [lindex [lindex $r 0] 1] new_datum$key_set(1)
119 error_check_good curs_get:deleted [$curs get
[all...]
H A Dtest023.tcl80 # Now let's get all the items and make sure they look OK.
89 set ret [$dbc get -set $key]
102 set ret [$dbc get -current]
106 set ret [$dbc get -prev]
109 # Now 10 nexts should work to get us in the middle
111 set ret [$dbc get -next]
124 set ret [$dbc get -current]
128 set ret [$dbc get -next]
133 set ret [$dbc get -prev]
140 set ret [$dbc get
[all...]
H A Dlog001.tcl41 puts -nonewline "Log001: Basic put/get log records: "
93 for { set grec [$logc get -first] } { [llength $grec] != 0 } {
94 set grec [$logc get -next]} {
102 for { set grec [$logc get -last] } { [llength $grec] != 0 } {
103 set grec [$logc get -prev] } {
112 set grec [$logc get -set $lsn]
123 set grec [$logc get -set $lsn]
129 set grec [$logc get -first]
131 set grec [$logc get -current]
134 set grec [$logc get
[all...]
H A Dtest046.tcl98 # get db order of keys
99 for {set i 1; set ret [$dbc get -first]} { [llength $ret] != 0} { \
100 set ret [$dbc get -next]} {
108 # get key in middle of page, call this the nth set curr to it
110 set ret [$dbc get -set $key_set($i)]
118 # use set_range to get first key starting at n-1, should
121 set ret [$dbc get -set_range $key_set($i)]
124 set ret [$dbc get -set $key_set($i)]
128 # catch:get [catch {$dbc get
[all...]
H A Dtest089.tcl96 set ret [$dbcr get -first]
108 # Position both cursors at get -first. They should find the same data.
109 set get_first [$dbcw get -first]
110 set get_first_dup [$dup_dbcw get -first]
118 set reversed [$dup_dbcw get -current]
125 set forward [$dbcw get -current]
132 puts "\tTest089.c: Test delete then get"
137 for {set kd [$dbc get -first] } { [llength $kd] != 0 } \
138 {set kd [$dbc get -next] } {
196 set offpage [$dbcr get
[all...]
H A Dtest099.tcl9 # TEST Test of DB->get and DBC->c_get with set_recno and get_recno.
12 # TEST After all are entered, retrieve each using -recno with DB->get.
129 set ret [$dbc get -first]
135 set current [$dbc get -current]
136 set r [$dbc get -set_recno $recno]
145 set g [$dbc get -get_recno]
147 set ret [$dbc get -next]
156 set r [$dbc get -set_recno $recno]
162 set g [$dbc get -get_recno]
194 set ret [$dbc0 get
[all...]
H A Dtest030.tcl74 # Here is the loop where we put and get each key/data pair
79 puts "\tTest030.a: put and get duplicate keys."
112 for {set ret [$dbc get -set $str]} \
114 {set ret [$dbc get -nextdup] } {
136 for {set ret [$dbc get -prev]} \
138 {set ret [$dbc get -prevdup] } {
169 for {set ret [$dbc get -first]} \
171 {set ret [$dbc get -next] } {
173 # Outer loop should always get a new key
192 set ret [eval {$cntdb get}
[all...]
H A Dlog004.tcl33 # Now open the log and get the first record and try a prev
41 set ret [$logc get -first]
45 catch {$logc get -prev} ret
H A Dtxn014.tcl86 set ret [$childdb get -txn $child $key]
88 get $ret [list [list $key [pad_data $method $str]]]
91 set ret [$db get -txn $child $key]
93 get $ret [list [list $key [pad_data $method $str]]]
101 set ret [$db2 get -txn $nonparent $key]
107 catch {$db2 get -txn $child $key} ret
135 set ret [$child2db get -txn $child2 $key]
137 get $ret [list [list $key [pad_data $method $str]]] 1
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/net/irda/ircomm/
H A Dircomm_param.c44 int get);
46 int get);
48 int get);
50 int get);
52 int get);
54 int get);
56 int get);
57 static int ircomm_param_xon_xoff(void *instance, irda_param_t *param, int get);
58 static int ircomm_param_enq_ack(void *instance, irda_param_t *param, int get);
60 int get);
164 ircomm_param_service_type(void *instance, irda_param_t *param, int get) argument
231 ircomm_param_port_type(void *instance, irda_param_t *param, int get) argument
255 ircomm_param_port_name(void *instance, irda_param_t *param, int get) argument
278 ircomm_param_data_rate(void *instance, irda_param_t *param, int get) argument
301 ircomm_param_data_format(void *instance, irda_param_t *param, int get) argument
323 ircomm_param_flow_control(void *instance, irda_param_t *param, int get) argument
347 ircomm_param_xon_xoff(void *instance, irda_param_t *param, int get) argument
374 ircomm_param_enq_ack(void *instance, irda_param_t *param, int get) argument
401 ircomm_param_line_status(void *instance, irda_param_t *param, int get) argument
415 ircomm_param_dte(void *instance, irda_param_t *param, int get) argument
460 ircomm_param_dce(void *instance, irda_param_t *param, int get) argument
492 ircomm_param_poll(void *instance, irda_param_t *param, int get) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/scripts/
H A Dbloat-o-meter22 sym[name] = sym.get(name, 0) + int(size, 16)
47 d = new.get(name, 0) - old.get(name, 0)
59 if d: print "%-40s %7s %7s %+7d" % (n, old.get(n,"-"), new.get(n,"-"), d)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/arm/mach-omap2/
H A Dsram-fn.S53 ldr r2, cm_clksel2_pll @ get address of dpllout reg
63 ldr r10, [r11] @ get current val
66 mvn r9, #0x4 @ mask to get clear bit2
73 /* get dll value */
74 add r11, r11, #0x4 @ get addr of status reg
75 ldr r10, [r11] @ get locked value
113 ldr r4, prcm_voltctrl @ get addr of volt ctrl.
114 ldr r5, [r4] @ get value.
115 ldr r6, prcm_mask_val @ get value of mask
119 mov r3, #0x4000 @ get va
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/test/scr015/
H A DTestSimpleAccess.cpp42 if ((ret = db->get(NULL, goodkeydbt, resultdbt, 0)) != 0) {
43 cout << "get: " << DbEnv::strerror(ret) << "\n";
50 if ((ret = db->get(NULL, badkeydbt, resultdbt, 0)) != 0) {
52 cout << "get using bad key: "
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/collections/
H A DCurrentTransaction.java83 CurrentTransaction ct = envMap.get(env);
152 return envRef.get();
161 Trans trans = (Trans) localTrans.get();
198 Trans trans = (Trans) localTrans.get();
239 Trans trans = (Trans) localTrans.get();
267 Trans trans = (Trans) localTrans.get();
283 Trans trans = (Trans) localTrans.get();
320 WeakHashMap cdbCursorsMap = (WeakHashMap) localCdbCursors.get();
325 cdbCursors = (CdbCursors) cdbCursorsMap.get(db);
361 Cursor other = ((Cursor) cursors.get(
[all...]

Completed in 276 milliseconds

1234567891011>>