Searched refs:get (Results 51 - 75 of 920) sorted by relevance

1234567891011>>

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/s390/char/
H A Dtape_char.c28 #define TAPECHAR_MAJOR 0 /* get dynamic major */
418 struct mtget get; local
420 memset(&get, 0, sizeof(get));
421 get.mt_type = MT_ISUNKNOWN;
422 get.mt_resid = 0 /* device->devstat.rescnt */;
423 get.mt_dsreg = device->tape_state;
424 get.mt_gstat = 0;
425 get.mt_erreg = 0;
426 get
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/test/
H A Dtest043.tcl84 puts "\tTest043.b: get keys using DB_FIRST/DB_NEXT"
94 for { set rec [$dbc get -first] } { [llength $rec] != 0 } {
95 set rec [$dbc get -next] } {
98 error_check_good "$dbc get key==data" [pad_data $method $k] $d
99 error_check_good "$dbc get sequential" $k $check
101 error_check_good "$dbc get key too large" $k $nentries
106 # Now make sure that we get DB_KEYEMPTY for non-existent keys
111 for { set rec [$dbc get -first] } { [llength $rec] != 0 } {
112 set rec [$dbc get -next] } {
115 set ret [eval {$db get}
[all...]
H A Dtest059.tcl80 for {set d [$curs get -first] } { [llength $d] != 0 } {
81 set d [$curs get -next] } {
86 puts "\tTest059.a: db get with 0 partial length retrieve"
89 set ret [eval {$db get -partial {0 0}} $txn $gflags {$key_set(5)}]
93 set ret [$curs get -first -partial {0 0}]
100 set ret [$curs get -next -partial {0 0}]
107 set ret [$curs get -last -partial {0 0}]
114 set ret [$curs get -prev -partial {0 0}]
121 set ret [$curs get -current -partial {0 0}]
128 set ret [$curs get
[all...]
H A Dtest072.tcl95 error_check_good preset [$precursor get -set $prekey] \
97 error_check_good postset [$postcursor get -set $postkey] \
119 error_check_good "dbc get -get_both ($i)"\
120 [$dbc($i) get -get_both $key $datum]\
124 set dbt [$dbc($j) get -current]
144 set pre_dbt [$precursor get -current]
145 set post_dbt [$postcursor get -current]
191 error_check_good "dbc get -get_both ($i)"\
192 [$dbc($i) get -get_both $key $datum]\
196 set dbt [$dbc($j) get
[all...]
H A Drep018script.tcl64 set ret [lindex [$db get $i] 0]
85 while { [llength [$marker get PARENTDONE]] == 0 } {
92 error_check_good db_empty [llength [$cursor get -first]] 0
H A Dtest062.tcl108 for {set ret [$dbc get -set $key]} \
110 {set ret [$dbc get -nextdup]} {
119 set ret [$dbc get -current]
127 set ret [$dbc get -current]
133 puts "\tTest$tnum.c: Double-checking get loop."
137 for {set ret [$dbc get -first]} \
139 {set ret [$dbc get -next]} {
H A Dlog007.tcl68 set first [$m_logc get -first]
70 set last [$m_logc get -last]
74 for { set logrec [$m_logc get -first] } \
76 { set logrec [$m_logc get -next]} {
H A Dlock005.tcl40 # ... and try to get a record from the first txn (should fail)
41 set ret [catch {$db get -txn $txn2 $recno1} res]
92 set ret1 [catch {$db get -txn $txn2 $recno1} res1]
93 set ret2 [catch {$db get -txn $txn2 $recno2} res2]
107 # The get no longer needs to be transactional
108 set ret3 [catch {$db get $recno1} res3]
109 set ret4 [catch {$db get $recno2} res4]
129 set ret1 [catch {$db get -txn $txn1 $recno1} res1]
130 set ret2 [catch {$db get -txn $txn1 $recno2} res2]
144 # The get n
[all...]
H A Dtest029.tcl98 puts "\tTest029.b: put/get loop"
115 set ret [eval {$db get} $txn $gflags {$key}]
149 # First try to get the old last key (shouldn't exist)
155 set ret [eval {$db get} $txn $gflags {$last_keynum}]
161 # Now try to get what we think should be the last key
167 set ret [eval {$db get} $txn $gflags {[expr $last_keynum - 1]}]
192 set ret [$dbc get -first]
198 set ret [eval {$db get} $txn $gflags {$last_keynum}]
205 set ret [$dbc get -first]
213 # First try to get th
[all...]
H A Dtest038.tcl84 # Here is the loop where we put and get each key/data pair
85 puts "\tTest$tnum.a: Put/get loop"
126 for {set ret [$dbc get -set $str]} \
128 {set ret [$dbc get -nextdup] } {
166 for {set ret [$check_c get -first]} \
168 {set ret [$check_c get -next] } {
176 set ret [$dbc get -get_both $k $data]
182 set ret [$dbc get -get_both_range $k $pref]
191 set ret [eval {$db get} $txn {-get_both $k $data}]
197 set ret [$dbc get
[all...]
H A Dtest063.tcl61 # Put and get an item so it's nonempty.
70 set dbt [eval {$db get} $txn $gflags {$key}]
88 # Now open it read-only and make sure we can get but not put.
97 set dbt [eval {$db get} $txn $gflags {$key}]
121 error_check_good cursor_set [$dbc get -first] $dbt
126 set dbt [eval {$db get} $gflags {$key2}]
136 set dbt [eval {$db get} $txn $gflags {$key}]
143 set dbt2 [$dbc get -first]
150 set dbt2 [$dbc get -current]
167 error_check_good first_there [$dbc get
[all...]
H A Darchive.tcl86 set l1 [lindex [lindex [$logc get -last] 0] 0]
96 set l2 [lindex [lindex [$logc get -last] 0] 0]
104 set l3 [lindex [lindex [$logc get -last] 0] 0]
124 set ckp_file [lindex [lindex [$logc get -last] 0] 0]
140 [lindex [lindex [$logc get -last] 0] 0]
193 set l1 [lindex [lindex [$logc get -last] 0] 0]
203 set l2 [lindex [lindex [$logc get -last] 0] 0]
213 set l3 [lindex [lindex [$logc get -last] 0] 0]
H A Drep045script.tcl62 if { [catch {$vdb get VERSION} res] } {
75 puts "FAIL: Trying to get version, got $res"
99 for { set dbt [$dbc get -first] } { $i < $niter } \
100 { set dbt [$dbc get -next] } {
109 set ret [$vdb get VERSION]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/arm/mach-s3c2410/
H A Dsleep.S48 ldr r7, [ r4 ] @ get REFRESH (and ensure in TLB)
49 ldr r8, [ r5 ] @ get MISCCR (and ensure in TLB)
50 ldr r9, [ r6 ] @ get CLKCON (and ensure in TLB)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/python/
H A Dsetup.py34 samba_objs = os.environ.get("PYTHON_OBJS", "")
36 samba_cflags = os.environ.get("PYTHON_CFLAGS", "")
38 samba_srcdir = os.environ.get("SRCDIR", "")
42 samba_libs = os.environ.get("LIBS", "")
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/docs_src/ref/am/
H A DMakefile4 curget.html curput.html cursor.html delete.html get.html \
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-arm/hardware/
H A Dentry-macro-iomd.S23 ldrb \irqstat, [\base, #IOMD_IRQREQB] @ get high priority first
27 ldreqb \irqstat, [\base, #IOMD_DMAREQ] @ get dma
32 ldreqb \irqstat, [\base, #IOMD_IRQREQA] @ get low priority
45 2406: ldrneb \irqnr, [\tmp, \irqstat] @ get IRQ number
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/sound/pci/ac97/
H A Dac97_patch.h33 .get = snd_ac97_get_volsw, .put = snd_ac97_put_volsw, \
38 .get = snd_ac97_get_volsw, .put = snd_ac97_put_volsw, \
43 .get = snd_ac97_get_volsw, .put = snd_ac97_put_volsw, \
63 .get = snd_ac97_get_enum_double, .put = snd_ac97_put_enum_double, \
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/examples/LDAP/smbldap-tools-0.8.7/
H A Dconfigure.pl6 # This script can help you setting up the smbldap_conf.pl file. It will get all the defaults value
44 . if the domain SID is defined (you can get it with the 'net getlocalsid')
124 # you can get all the available keys using this:
147 chomp(my $get=<STDIN>);
148 if ($get eq "") {
150 } elsif ($get eq ".") {
153 $value=$get;
166 chomp(my $get=<STDIN>);
167 if ($get eq "") {
169 } elsif ($get e
[all...]
/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 DRawAccessor.java114 writeField(o, secKeyFields.get(i), output);
139 readField(o, secKeyFields.get(i), input);
149 writeField(o, nonKeyFields.get(i), output);
171 readField(o, nonKeyFields.get(i), input);
185 isSecField ? secKeyFields.get(field) : nonKeyFields.get(field);
200 isSecField ? secKeyFields.get(field) : nonKeyFields.get(field);
209 return ((RawObject) o).getValues().get(field.getName());
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/test/scr016/src/com/sleepycat/db/test/
H A DPartialGetTest.java68 if (db.get(null, key, partialData, LockMode.DEFAULT) !=
73 fail("Data mismatch from partial get.");
76 if (db.get(null, key, partialData, LockMode.DEFAULT) !=
81 fail("Data mismatch from partial get.");
99 if (db.get(null, key, partialData, LockMode.DEFAULT) !=
104 fail("Data mismatch from partial get.");
107 if (db.get(null, key, partialData, LockMode.DEFAULT) !=
110 fail("Data mismatch from partial get.");
115 if (db.get(null, key, partialData, LockMode.DEFAULT) !=
118 fail("Data mismatch from partial get
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/net/irda/
H A Dqos.c86 static int irlap_param_baud_rate(void *instance, irda_param_t *param, int get);
88 int get);
90 int get);
91 static int irlap_param_data_size(void *instance, irda_param_t *param, int get);
93 int get);
95 int get);
97 int get);
156 * As the compiler is "one pass", this is the only way to get them to
524 * Function irlap_param_baud_rate (instance, param, get)
529 static int irlap_param_baud_rate(void *instance, irda_param_t *param, int get) argument
564 irlap_param_link_disconnect(void *instance, irda_param_t *param, int get) argument
598 irlap_param_max_turn_time(void *instance, irda_param_t *param, int get) argument
621 irlap_param_data_size(void *instance, irda_param_t *param, int get) argument
643 irlap_param_window_size(void *instance, irda_param_t *param, int get) argument
665 irlap_param_additional_bofs(void *instance, irda_param_t *param, int get) argument
686 irlap_param_min_turn_time(void *instance, irda_param_t *param, int get) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/db/
H A DJoinCursor.java149 dbc.get(key, DatabaseEntry.IGNORE,
190 dbc.get(key, data, LockMode.getFlag(lockMode) |
H A DSequence.java76 public long get(Transaction txn, int delta) method in class:Sequence
79 return seq.get((txn == null) ? null : txn.txn, delta,
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/test/scr024/src/com/sleepycat/bind/serial/test/
H A DTestClassCatalog.java37 byte[] id = (byte[]) nameToIdMap.get(className);
53 ObjectStreamClass desc = (ObjectStreamClass) idToDescMap.get(strId);

Completed in 224 milliseconds

1234567891011>>