Searched defs:Cursor (Results 1 - 2 of 2) sorted by relevance

/frameworks/native/libs/vr/libpdx/private/pdx/rpc/
H A Dpayload.h30 typename BufferType::iterator& Cursor() { return cursor_; } function in class:android::pdx::rpc::MessagePayload
91 return &*this->Cursor();
128 return &*this->Cursor();
/frameworks/base/core/java/android/database/
H A DCursor.java29 * Cursor implementations are not required to be synchronized so code using a Cursor from multiple
30 * threads should perform its own synchronization when using the Cursor.
35 public interface Cursor extends Closeable { interface in inherits:Closeable
346 * Deactivates the Cursor, making all calls on it fail until {@link #requery} is called.
372 * Closes the Cursor, releasing all of its resources and making it completely invalid.
373 * Unlike {@link #deactivate()} a call to {@link #requery()} will not make the Cursor valid
432 * Return the URI at which notifications of changes in this Cursor's data
436 * ContentResolver.registerContentObserver} to find out about changes to this Cursor's

Completed in 73 milliseconds