HomeSort by relevance Sort by last modified time
    Searched refs:readOnly (Results 1 - 25 of 80) sorted by null

1 2 3 4

  /libcore/luni/src/test/java/libcore/java/nio/channels/
DatagramChannelTest.java 25 ByteBuffer readOnly = ByteBuffer.allocate(1).asReadOnlyBuffer();
30 dc.read(readOnly);
35 dc.read(new ByteBuffer[] { readOnly });
40 dc.read(new ByteBuffer[] { readOnly }, 0, 1);
SocketChannelTest.java 25 ByteBuffer readOnly = ByteBuffer.allocate(1).asReadOnlyBuffer();
30 sc.read(readOnly);
35 sc.read(new ByteBuffer[] { readOnly });
40 sc.read(new ByteBuffer[] { readOnly }, 0, 1);
FileChannelTest.java 26 ByteBuffer readOnly = ByteBuffer.allocate(1).asReadOnlyBuffer();
31 fc.read(readOnly);
36 fc.read(new ByteBuffer[] { readOnly });
41 fc.read(new ByteBuffer[] { readOnly }, 0, 1);
46 fc.read(readOnly, 0L);
  /libcore/luni/src/main/java/java/io/
FileDescriptor.java 64 boolean readOnly = false;
89 if (!readOnly) {
  /libcore/support/src/test/java/org/apache/harmony/security/tests/support/
MyPermissionCollection.java 29 public MyPermissionCollection(boolean readOnly) {
30 if (readOnly) {
  /external/webkit/JavaScriptCore/tests/mozilla/js1_2/version120/
regress-99663.js 56 var READONLY = /read\s*-?\s*only/;
104 actual = readOnly(e.message);
118 actual = readOnly(e.message);
132 actual = readOnly(e.message);
146 function readOnly(msg)
148 if (msg.match(READONLY))
  /external/webkit/WebCore/platform/sql/
SQLiteTransaction.h 38 SQLiteTransaction(SQLiteDatabase& db, bool readOnly = false);
SQLiteTransaction.cpp 33 SQLiteTransaction::SQLiteTransaction(SQLiteDatabase& db, bool readOnly)
36 , m_readOnly(readOnly)
  /external/webkit/WebCore/rendering/
HitTestRequest.h 30 ReadOnly = 0x1,
42 bool readOnly() const { return m_requestType & ReadOnly; }
  /libcore/luni/src/main/java/java/security/
PermissionCollection.java 42 private boolean readOnly; // = false;
81 return readOnly;
89 readOnly = true;
  /packages/apps/Contacts/src/com/android/contacts/model/
Editor.java 54 public void setValues(DataKind kind, ValuesDelta values, EntityDelta state, boolean readOnly,
  /external/webkit/JavaScriptCore/runtime/
SymbolTable.h 59 pack(index, attributes & ReadOnly, attributes & DontEnum);
76 attributes |= ReadOnly;
84 pack(getIndex(), attributes & ReadOnly, attributes & DontEnum);
98 void pack(int index, bool readOnly, bool dontEnum)
101 if (readOnly)
  /external/webkit/WebCore/storage/
SQLStatement.h 54 static PassRefPtr<SQLStatement> create(const String&, const Vector<SQLValue>&, PassRefPtr<SQLStatementCallback>, PassRefPtr<SQLStatementErrorCallback>, bool readOnly);
69 SQLStatement(const String& statement, const Vector<SQLValue>& arguments, PassRefPtr<SQLStatementCallback> callback, PassRefPtr<SQLStatementErrorCallback> errorCallback, bool readOnly);
SQLStatement.cpp 47 PassRefPtr<SQLStatement> SQLStatement::create(const String& statement, const Vector<SQLValue>& arguments, PassRefPtr<SQLStatementCallback> callback, PassRefPtr<SQLStatementErrorCallback> errorCallback, bool readOnly)
49 return adoptRef(new SQLStatement(statement, arguments, callback, errorCallback, readOnly));
52 SQLStatement::SQLStatement(const String& statement, const Vector<SQLValue>& arguments, PassRefPtr<SQLStatementCallback> callback, PassRefPtr<SQLStatementErrorCallback> errorCallback, bool readOnly)
57 , m_readOnly(readOnly)
SQLTransaction.h 70 PassRefPtr<VoidCallback>, PassRefPtr<SQLTransactionWrapper>, bool readOnly = false);
87 PassRefPtr<VoidCallback>, PassRefPtr<SQLTransactionWrapper>, bool readOnly);
SQLTransaction.cpp 63 PassRefPtr<VoidCallback> successCallback, PassRefPtr<SQLTransactionWrapper> wrapper, bool readOnly)
65 return adoptRef(new SQLTransaction(db, callback, errorCallback, successCallback, wrapper, readOnly));
69 PassRefPtr<SQLTransactionWrapper> wrapper, bool readOnly)
80 , m_readOnly(readOnly)
  /frameworks/base/include/utils/
FileMap.h 58 off_t offset, size_t length, bool readOnly);
  /frameworks/base/libs/utils/
FileMap.cpp 89 bool FileMap::create(const char* origFileName, int fd, off_t offset, size_t length, bool readOnly)
103 DWORD protect = readOnly ? PAGE_READONLY : PAGE_READWRITE;
118 readOnly ? FILE_MAP_READ : FILE_MAP_ALL_ACCESS,
163 if (!readOnly)
  /external/webkit/WebCore/html/
HTMLTextAreaElement.h 52 bool readOnly() const { return isReadOnlyFormControl(); }
56 virtual bool valueMissing() const { return isRequiredFormControl() && !disabled() && !readOnly() && value().isEmpty(); }
HTMLTextAreaElement.idl 25 readonly attribute HTMLFormElement form;
26 readonly attribute ValidityState validity;
35 attribute boolean readOnly;
38 readonly attribute DOMString type;
40 readonly attribute unsigned long textLength;
44 readonly attribute boolean willValidate;
45 readonly attribute DOMString validationMessage;
  /external/webkit/WebCore/bindings/js/
JSDatabaseCustom.cpp 88 static JSValue createTransaction(ExecState* exec, const ArgList& args, Database* database, JSDOMGlobalObject* globalObject, bool readOnly)
119 database->transaction(callback.release(), errorCallback.release(), successCallback.release(), readOnly);
  /external/webkit/WebCore/bindings/v8/custom/
V8DatabaseCustom.cpp 90 static v8::Handle<v8::Value> createTransaction(const v8::Arguments& args, bool readOnly)
122 database->transaction(callback.release(), errorCallback.release(), successCallback.release(), readOnly);
  /libcore/luni/src/main/java/javax/security/auth/
Subject.java 79 private boolean readOnly;
97 readOnly = false;
104 * @param readOnly
117 public Subject(boolean readOnly, Set<? extends Principal> subjPrincipals,
128 this.readOnly = readOnly;
411 readOnly = true;
420 return readOnly;
511 if (readOnly) {
  /packages/apps/Contacts/src/com/android/contacts/ui/widget/
PhotoEditorView.java 79 public void setValues(DataKind kind, ValuesDelta values, EntityDelta state, boolean readOnly,
82 mReadOnly = readOnly;
  /system/core/nexus/
Property.cpp 28 Property::Property(const char *name, bool readOnly,
30 mName(name), mReadOnly(readOnly), mType(type),

Completed in 387 milliseconds

1 2 3 4