Searched refs:view (Results 1 - 25 of 46) sorted by relevance

12

/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/collections/
H A DMyRangeCursor.java20 private DataView view; field in class:MyRangeCursor
26 DataView view,
30 super(range, view.dupsRange, view.dupsOrdered,
31 openCursor(view, config, writeAllowed));
32 this.view = view;
33 isRecnoOrQueue = view.recNumAllowed && !view.btreeRecNumDb;
49 private static Cursor openCursor(DataView view, argument
24 MyRangeCursor(KeyRange range, CursorConfig config, DataView view, boolean writeAllowed) argument
[all...]
H A DDataCursor.java27 * <p>This class operates on a view and takes care of reading and updating
43 private DataView view; field in class:DataCursor
54 * Creates a cursor for a given view.
56 DataCursor(DataView view, boolean writeAllowed) argument
59 init(view, writeAllowed, null, null);
63 * Creates a cursor for a given view.
65 DataCursor(DataView view, boolean writeAllowed, CursorConfig config) argument
68 init(view, writeAllowed, config, null);
72 * Creates a cursor for a given view and single key range.
75 DataCursor(DataView view, boolea argument
85 DataCursor(DataView view, boolean writeAllowed, Object beginKey, boolean beginInclusive, Object endKey, boolean endInclusive) argument
98 DataCursor(DataView view, DataCursor[] indexCursors, JoinConfig joinConfig, boolean closeIndexCursors) argument
154 init(DataView view, boolean writeAllowed, CursorConfig config, KeyRange range) argument
[all...]
H A DStoredContainer.java45 DataView view; field in class:StoredContainer
47 StoredContainer(DataView view) { argument
49 this.view = view;
62 return view.writeAllowed;
78 return DbCompat.cloneCursorConfig(view.cursorConfig);
99 return view.readUncommittedAllowed;
109 return view.cursorConfig.getReadUncommitted();
125 return view.transactional;
135 cont.view
[all...]
H A DStoredValueSet.java35 * Creates a value set view of a {@link Database}.
60 * Creates a value set entity view of a {@link Database}.
107 if (view.isSecondary()) {
110 } else if (view.range.isSingleKey()) {
112 if (!view.dupsAllowed) {
118 cursor = new DataCursor(view, true);
129 } else if (view.entityBinding == null) {
174 return view.makeValue(priKeyEntry, valueEntry);
H A DDataView.java34 * <p>This class defines a view and takes care of reading and updating indices,
50 CursorConfig cursorConfig; // Used for all operations via this view
51 boolean writeAllowed; // Read-write view
69 * called, to further narrow the view.
76 * Creates a view for a given database and bindings. The initial key range
77 * of the view will be open.
143 * Clones the view.
155 * Return a new key-set view derived from this view by setting the
158 * @return the derived view
[all...]
H A DStoredMap.java23 * A Map view of a {@link Database}.
43 * Creates a map view of a {@link Database}.
71 * Creates a map view of a {@link Database} with a {@link
101 * Creates a map entity view of a {@link Database}.
129 * Creates a map entity view of a {@link Database} with a {@link
158 StoredMap(DataView view) { argument
160 super(view);
165 * Override this method to initialize view-dependent fields.
183 entrySet = new StoredSortedEntrySet(view);
185 entrySet = new StoredEntrySet(view);
[all...]
H A DBlockIterator.java143 if (coll.view.btreeRecNumDb) {
146 cursor = new DataCursor(coll.view, false);
221 if (coll.view.recNumRenumber && keys[j] != null) {
307 cursor = new DataCursor(coll.view, writeAllowed);
404 cursor = new DataCursor(coll.view, writeAllowed);
497 if (!coll.view.recNumAccess) {
509 if (!coll.view.recNumAccess) {
530 cursor = new DataCursor(coll.view, writeAllowed);
553 cursor = new DataCursor(coll.view, writeAllowed);
625 if (coll.view
[all...]
H A DStoredList.java26 * A List view of a {@link Database}.
54 * Creates a list view of a {@link Database}.
78 * Creates a list entity view of a {@link Database}.
102 * Creates a list view of a {@link Database} with a {@link
127 * Creates a list entity view of a {@link Database} with a {@link
151 private StoredList(DataView view, int baseIndex) { argument
153 super(view);
176 cursor = new DataCursor(view, true);
185 view.append(value, null, null);
211 view
[all...]
H A DStoredEntrySet.java84 cursor = new DataCursor(view, true);
119 cursor = new DataCursor(view, false);
158 return new StoredMapEntry(view.makeKey(keyEntry, priKeyEntry),
159 view.makeValue(priKeyEntry, valueEntry),
H A DStoredMapEntry.java36 if (coll.view.dupsAllowed) {
H A DStoredKeySet.java32 * Creates a key set view of a {@link Database}.
78 cursor = new DataCursor(view, true);
128 return view.makeKey(keyEntry, priKeyEntry);
H A DStoredSortedValueSet.java42 * Creates a sorted value set entity view of a {@link Database}.
75 if (!view.canDeriveKeyFromValue()) {
123 * Returns a view of the portion of this sorted set whose elements are
143 * Returns a view of the portion of this sorted set whose elements are
165 * Returns a view of the portion of this sorted set whose elements are
185 * Returns a view of the portion of this sorted set whose elements are
207 * Returns a view of the portion of this sorted set whose elements range
229 * Returns a view of the portion of this sorted set whose elements are
255 view.subView(fromValue, fromInclusive, toValue, toInclusive,
H A DStoredCollection.java56 StoredCollection(DataView view) { argument
58 super(view);
93 cursor = new DataCursor(view, true);
459 if (DbCompat.DATABASE_COUNT && countDups && !view.range.hasBound()) {
461 return (int) DbCompat.getDatabaseCount(view.db);
467 CursorConfig cursorConfig = view.currentTxn.isLockingMode() ?
471 cursor = new DataCursor(view, false, cursorConfig);
527 indexViews[i] = indices[i].view;
529 DataCursor cursor = view.join(indexViews, indexKeys, joinConfig);
540 cursor = new DataCursor(view, fals
[all...]
H A DStoredIterator.java90 this.cursor = new DataCursor(coll.view, writeAllowed);
276 if (!coll.view.recNumAccess) {
305 if (!coll.view.recNumAccess) {
424 if (coll.view.keysRenumbered) { // recno-renumber database
432 status = coll.view.append(value, null, null);
433 cursor = new DataCursor(coll.view, writeAllowed);
442 if (coll.view.keysRenumbered) { // recno-renumber database
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/drivers/s390/char/
H A Dcon3270.c3 * IBM/3270 Driver - console view.
33 * Main 3270 console view data structure.
36 struct raw3270_view view; member in struct:con3270
90 * "console view" in the lower left corner and "Running"/"More..."/"Holding"
100 codepage_convert(cp->view.ascebc, cp->status->string + 24, 7);
116 raw3270_buffer_address(cp->view.dev, cp->status->string + 1,
117 cp->view.cols * (cp->view.rows - 1));
118 raw3270_buffer_address(cp->view.dev, cp->status->string + 21,
119 cp->view
381 con3270_activate(struct raw3270_view *view) argument
398 con3270_deactivate(struct raw3270_view *view) argument
[all...]
H A Draw3270.c45 struct raw3270_view *view; /* Active view. */ member in struct:raw3270
82 * Wait queue for device init/delete, view delete.
290 __raw3270_start(struct raw3270 *rp, struct raw3270_view *view, argument
293 rq->view = view;
294 raw3270_get_view(view);
301 raw3270_put_view(view);
310 raw3270_start(struct raw3270_view *view, struct raw3270_request *rq) argument
316 spin_lock_irqsave(get_ccwdev_lock(view
329 raw3270_start_locked(struct raw3270_view *view, struct raw3270_request *rq) argument
345 raw3270_start_irq(struct raw3270_view *view, struct raw3270_request *rq) argument
363 struct raw3270_view *view; local
493 raw3270_init_irq(struct raw3270_view *view, struct raw3270_request *rq, struct irb *irb) argument
548 raw3270_start_init(struct raw3270 *rp, struct raw3270_view *view, struct raw3270_request *rq) argument
772 raw3270_reset(struct raw3270_view *view) argument
922 raw3270_activate_view(struct raw3270_view *view) argument
968 raw3270_deactivate_view(struct raw3270_view *view) argument
1000 raw3270_add_view(struct raw3270_view *view, struct raw3270_fn *fn, int minor) argument
1040 struct raw3270_view *view, *tmp; local
1070 raw3270_del_view(struct raw3270_view *view) argument
[all...]
H A Dfs3270.c29 struct raw3270_view view; member in struct:fs3270
34 int active; /* Fullscreen view is active. */
51 * The fullscreen view is in working order if the view
58 fs3270_do_io(struct raw3270_view *view, struct raw3270_request *rq) argument
63 fp = (struct fs3270 *) view;
69 /* Fullscreen view isn't ready yet. */
75 rc = raw3270_start(view, rq);
85 * Switch to the fullscreen view.
92 fp = (struct fs3270 *) rq->view;
113 fs3270_activate(struct raw3270_view *view) argument
185 fs3270_deactivate(struct raw3270_view *view) argument
384 fs3270_free_view(struct raw3270_view *view) argument
399 fs3270_release(struct raw3270_view *view) argument
[all...]
H A Dtty3270.c55 struct raw3270_view view; member in struct:tty3270
119 raw3270_put_view(&tp->view);
125 raw3270_get_view(&tp->view);
146 if (count > tp->view.cols * 2 - 11)
147 count = tp->view.cols * 2 - 11;
151 if (count < tp->view.cols * 2 - 11) {
154 off = tp->view.cols * tp->view.rows - 9;
155 raw3270_buffer_address(tp->view.dev, line->string+count+8, off);
173 sizeof(blueprint) + tp->view
634 tty3270_activate(struct raw3270_view *view) argument
651 tty3270_deactivate(struct raw3270_view *view) argument
794 tty3270_release(struct raw3270_view *view) argument
813 tty3270_free(struct raw3270_view *view) argument
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/drivers/media/video/pwc/
H A Dpwc-uncompress.c81 n = pdev->view.x * pdev->view.y;
84 stride = pdev->view.x * pdev->offset.y + pdev->offset.x;
88 stride = pdev->view.x * pdev->offset.y / 4 + pdev->offset.x / 2;
93 stride = (pdev->view.x - pdev->image.x) / 2; /* u16 is 2 bytes */
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/test/scr024/src/com/sleepycat/collections/
H A DKeyRangeTest.java58 private DataView view; field in class:KeyRangeTest
107 view = new DataView(store, dataBinding, dataBinding, null, true, null);
139 view = null;
159 cursor = new DataCursor(view, true);
172 cursor = new DataCursor(view, false);
179 cursor = newCursor(view, keys[i], true, null, false, reversed);
187 cursor = newCursor(view, keys[i], false, null, false, reversed);
195 cursor = newCursor(view, null, false, keys[i], true, reversed);
203 cursor = newCursor(view, null, false, keys[i], false, reversed);
214 cursor = newCursor(view, key
263 newCursor(DataView view, Object beginKey, boolean beginInclusive, Object endKey, boolean endInclusive, boolean reversed) argument
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/arch/s390/kernel/
H A Ddebug.c48 struct debug_view *view; /* used view of debug info */ member in struct:file_private_info
80 struct debug_view *view, char *out_buf);
81 static int debug_input_level_fn(debug_info_t * id, struct debug_view *view,
85 struct debug_view *view, char *out_buf);
86 static int debug_input_pages_fn(debug_info_t * id, struct debug_view *view,
89 static int debug_input_flush_fn(debug_info_t * id, struct debug_view *view,
92 static int debug_hex_ascii_format_fn(debug_info_t * id, struct debug_view *view,
95 struct debug_view *view, char *out_buf,
97 static int debug_raw_header_fn(debug_info_t * id, struct debug_view *view,
452 struct debug_view *view = p_info->view; local
1071 debug_register_view(debug_info_t * id, struct debug_view *view) argument
1119 debug_unregister_view(debug_info_t * id, struct debug_view *view) argument
1188 debug_prolog_pages_fn(debug_info_t * id, struct debug_view *view, char *out_buf) argument
1199 debug_input_pages_fn(debug_info_t * id, struct debug_view *view, struct file *file, const char __user *user_buf, size_t user_len, loff_t * offset) argument
1240 debug_prolog_level_fn(debug_info_t * id, struct debug_view *view, char *out_buf) argument
1258 debug_input_level_fn(debug_info_t * id, struct debug_view *view, struct file *file, const char __user *user_buf, size_t user_len, loff_t * offset) argument
1341 debug_input_flush_fn(debug_info_t * id, struct debug_view *view, struct file *file, const char __user *user_buf, size_t user_len, loff_t * offset) argument
1380 debug_raw_header_fn(debug_info_t * id, struct debug_view *view, int area, debug_entry_t * entry, char *out_buf) argument
1395 debug_raw_format_fn(debug_info_t * id, struct debug_view *view, char *out_buf, const char *in_buf) argument
1410 debug_hex_ascii_format_fn(debug_info_t * id, struct debug_view *view, char *out_buf, const char *in_buf) argument
1436 debug_dflt_header_fn(debug_info_t * id, struct debug_view *view, int area, debug_entry_t * entry, char *out_buf) argument
1471 debug_sprintf_format_fn(debug_info_t * id, struct debug_view *view, char *out_buf, debug_sprintf_entry_t *curr_event) argument
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/dist/
H A Ds_readme18 This is version $DB_VERSION_MAJOR.$DB_VERSION_MINOR.$DB_VERSION_PATCH of Berkeley DB from Oracle. To view release and
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/include/asm-s390/
H A Ddebug.h16 * in order to allow a user program to analyze the 'raw'-view.
79 struct debug_view* view,
85 struct debug_view* view, char* out_buf,
88 struct debug_view* view,
91 struct debug_view* view,
96 int debug_dflt_header_fn(debug_info_t* id, struct debug_view* view,
209 int debug_register_view(debug_info_t* id, struct debug_view* view);
210 int debug_unregister_view(debug_info_t* id, struct debug_view* view);
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/mtools-4.0.10/
H A Dmattrib.c166 int view; local
176 view = 0;
221 view = 1;
227 if(view){
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/scripts/kconfig/
H A Dgconf.c62 static struct menu *current; // current node for SINGLE view
63 static struct menu *browsed; // browsed node for SPLIT view
289 GtkTreeView *view = GTK_TREE_VIEW(tree1_w); local
294 gtk_tree_view_set_model(view, model1);
295 gtk_tree_view_set_headers_visible(view, TRUE);
296 gtk_tree_view_set_rules_hint(view, FALSE);
299 gtk_tree_view_append_column(view, column);
320 sel = gtk_tree_view_get_selection(view);
333 GtkTreeView *view = GTK_TREE_VIEW(tree2_w); local
339 gtk_tree_view_set_model(view, model
987 GtkTreeView *view = GTK_TREE_VIEW(widget); local
1044 GtkTreeView *view = GTK_TREE_VIEW(widget); local
1105 GtkTreeView *view = GTK_TREE_VIEW(widget); local
[all...]

Completed in 217 milliseconds

12