/frameworks/base/core/java/android/database/sqlite/ |
D | SQLiteProgram.java | 130 bind(index, null); in bindNull() 141 bind(index, value); in bindLong() 152 bind(index, value); in bindDouble() 166 bind(index, value); in bindString() 180 bind(index, value); in bindBlob() 210 private void bind(int index, Object value) { in bind() method in SQLiteProgram
|
/frameworks/base/tests/CoreTests/android/core/ |
D | SocketTest.java | 61 ss.bind(new InetSocketAddress("127.0.0.1", port)); in testSocketSimple() 89 s2.bind(new InetSocketAddress((InetAddress) null, 12345)); in testWildcardAddress() 115 serverSock.bind(addr); in testSetReuseAddress() 154 serverSock2.bind(addr); in testSetReuseAddress()
|
/frameworks/base/core/jni/android/opengl/ |
D | util.cpp | 200 void bind() { in bind() function in android::ArrayHelper 246 positions.bind(); in util_computeBoundingSphere() 247 sphere.bind(); in util_computeBoundingSphere() 409 mvp.bind(); in util_frustumCullSpheres() 410 spheres.bind(); in util_frustumCullSpheres() 411 results.bind(); in util_frustumCullSpheres() 459 ws.bind(); in util_visibilityTest() 460 positions.bind(); in util_visibilityTest() 461 indices.bind(); in util_visibilityTest() 509 resultMat.bind(); in util_multiplyMM() [all …]
|
/frameworks/base/voip/jni/rtp/ |
D | RtpStream.cpp | 50 if (socket == -1 || bind(socket, (sockaddr *)&ss, sizeof(ss)) != 0 || in create() 77 if (bind(socket, (sockaddr *)&ss, sizeof(ss)) == 0) { in create()
|
/frameworks/base/core/java/android/net/ |
D | LocalSocket.java | 111 public void bind(LocalSocketAddress bindpoint) throws IOException { in bind() method in LocalSocket 120 impl.bind(localAddress); in bind()
|
D | LocalServerSocket.java | 52 impl.bind(localAddress); in LocalServerSocket()
|
D | LinkSocket.java | 251 public void bind(SocketAddress localAddr) throws UnsupportedOperationException { in bind() method in LinkSocket
|
/frameworks/base/docs/html/guide/components/ |
D | bound-services.jd | 11 <li>A bound service allows other components to bind to it, in order to interact with it and 51 (such as activities) to bind to the service, send requests, receive responses, and even perform 55 <p>This document shows you how to create a bound service, including how to bind 65 other applications to bind to it and interact with it. To provide binding for a 77 service to run indefinitely, and also allow a client to bind to the service by calling {@link 89 returns to the application, the activity can bind to the service to regain control of playback.</p> 97 <p>A client can bind to the service by calling {@link android.content.Context#bindService 110 additional clients that bind, without calling {@link android.app.Service#onBind onBind()} again.</p> 187 application that needs to bind an activity to its own service that's playing music in the 428 /** Flag indicating whether we have called bind on the service. */ [all …]
|
/frameworks/base/keystore/java/android/security/ |
D | KeyChain.java | 305 KeyChainConnection keyChainConnection = bind(context); in getPrivateKey() 340 KeyChainConnection keyChainConnection = bind(context); in getCertificateChain() 410 public static KeyChainConnection bind(Context context) throws InterruptedException { in bind() method in KeyChain
|
/frameworks/base/core/java/android/database/ |
D | DatabaseUtils.java | 601 inserter.bind(index, cursor.getString(cursor.getColumnIndexOrThrow(field))); in cursorStringToInsertHelper() 1114 public void bind(int index, double value) { in bind() method in DatabaseUtils.InsertHelper 1124 public void bind(int index, float value) { in bind() method in DatabaseUtils.InsertHelper 1134 public void bind(int index, long value) { in bind() method in DatabaseUtils.InsertHelper 1144 public void bind(int index, int value) { in bind() method in DatabaseUtils.InsertHelper 1154 public void bind(int index, boolean value) { in bind() method in DatabaseUtils.InsertHelper 1173 public void bind(int index, byte[] value) { in bind() method in DatabaseUtils.InsertHelper 1187 public void bind(int index, String value) { in bind() method in DatabaseUtils.InsertHelper
|
/frameworks/base/core/java/android/preference/ |
D | PreferenceScreen.java | 136 public void bind(ListView listView) { in bind() method in PreferenceScreen 163 bind(mListView); in showDialog()
|
/frameworks/native/opengl/libagl/ |
D | BufferObjectManager.h | 62 gl::buffer_t const* bind(GLuint buffer);
|
D | BufferObjectManager.cpp | 53 buffer_t const* EGLBufferObjectManager::bind(GLuint buffer) in bind() function in android::EGLBufferObjectManager
|
/frameworks/compile/mclinker/lib/Target/ |
D | GNULDBackend.cpp | 732 uint8_t bind = 0x0; in getSymbolInfo() local 734 bind = llvm::ELF::STB_LOCAL; in getSymbolInfo() 736 bind = llvm::ELF::STB_GLOBAL; in getSymbolInfo() 738 bind = llvm::ELF::STB_WEAK; in getSymbolInfo() 741 bind = llvm::ELF::STB_GLOBAL; in getSymbolInfo() 746 bind = llvm::ELF::STB_LOCAL; in getSymbolInfo() 748 return (pSymbol.resolveInfo()->type() | (bind << 4)); in getSymbolInfo()
|
/frameworks/base/docs/html/guide/topics/graphics/renderscript/ |
D | graphics.jd | 97 …class can modify the rendering context if needed and bind the Renderscript code to the context. On… 269 …<li>Allocate any necessary memory and bind it to your Renderscript code via the Renderscript objec… 270 …<li>Build any necessary meshes and bind them to the Renderscript code via the Renderscript object.… 271 …<li>Create any necessary programs and bind them to the Renderscript code via the Renderscript obje… 306 * Create a shader and bind to the Renderscript context 322 * Create and bind the Renderscript object to the Renderscript context 363 pass it to the Rendscript entry point class to bind the two. Once bound, the content is aware 646 <p>Once the program is created, bind it to the {@link android.renderscript.RenderScriptGL} 648 bindProgramVertex()}. It is then used for all subsequent draw calls until you bind a new 649 program. If the program has constant inputs, the user needs to bind an allocation [all …]
|
/frameworks/base/core/java/android/net/http/ |
D | HttpConnection.java | 60 conn.bind(sock, params); in openConnection()
|
D | HttpsConnection.java | 186 proxyConnection.bind(proxySock, params); in openConnection() 366 conn.bind(sslSock, params); in openConnection()
|
/frameworks/base/docs/html/guide/topics/ui/ |
D | binding.jd | 26 // Get a Spinner and bind it to an ArrayAdapter that 34 // Load a Spinner and bind it to a data query.
|
/frameworks/native/opengl/libs/GLES_trace/src/ |
D | gltrace_transport.cpp | 51 if (bind(serverSocket, (struct sockaddr *) &server, sockaddr_len) < 0) { in acceptClientConnection()
|
/frameworks/av/media/libstagefright/rtsp/ |
D | UDPPusher.cpp | 46 CHECK_EQ(0, bind(mSocket, (const struct sockaddr *)&addr, sizeof(addr))); in UDPPusher()
|
D | ARTPSession.cpp | 110 CHECK_EQ(0, bind(s, (const struct sockaddr *)&addr, sizeof(addr))); in MakeUDPSocket()
|
/frameworks/base/docs/html/guide/webapps/ |
D | overview.jd | 41 applications to embed web content in their layout and bind JavaScript to Android APIs. After 63 bind JavaScript to Android APIs.</dd>
|
/frameworks/base/docs/html/training/notepad/ |
D | notepad-ex1.jd | 13 <li><em>How to bind data from a database cursor into a ListView using a 486 SimpleCursorAdapter} to bind a database {@link android.database.Cursor Cursor} 489 can be used to take a List or Array of in-memory data and bind it in to 505 containing references to the views that we'll bind the data <em>into</em> 536 to which we'd like to bind the columns (these should be in order, respective to 548 to bind, and more Views to bind them in to, we would specify them in order, for example we 550 … <code>{ R.id.text1, R.id.text2 }</code> to bind two fields into the row (and we would also need 551 … to define text2 in the notes_row.xml, for the body text). This is how you can bind multiple fields
|
/frameworks/base/core/java/android/accounts/ |
D | AccountManagerService.java | 575 new TestFeaturesSession(accounts, response, account, features).bind(); in hasFeatures() 658 new RemoveAccountSession(accounts, response, account).bind(); in removeAccount() 1026 }.bind(); in getAuthTokenLabel() 1142 }.bind(); in getAuthToken() 1284 }.bind(); in addAcount() 1314 }.bind(); in confirmCredentials() 1350 }.bind(); in updateCredentials() 1380 }.bind(); in editProperties() 1564 new GetAccountsByTypeAndFeatureSession(userAccounts, response, type, features).bind(); in getAccountsByFeatures() 1681 void bind() { in bind() method in AccountManagerService.Session
|
/frameworks/rs/scriptc/ |
D | rs_graphics.rsh | 176 * @param c constants to bind 187 * @param c constants to bind 375 * @param font object to bind
|