Home
last modified time | relevance | path

Searched refs:bind (Results 1 – 25 of 28) sorted by relevance

12

/cts/tests/tests/database/src/android/database/cts/
DDatabaseUtils_InsertHelperTest.java113 mInsertHelper.bind(mInsertHelper.getColumnIndex("boolean_value"), true); in testInsert()
114 mInsertHelper.bind(mInsertHelper.getColumnIndex("int_value"), 10); in testInsert()
115 mInsertHelper.bind(mInsertHelper.getColumnIndex("long_value"), 1000L); in testInsert()
116 mInsertHelper.bind(mInsertHelper.getColumnIndex("double_value"), 123.456); in testInsert()
117 mInsertHelper.bind(mInsertHelper.getColumnIndex("float_value"), 1.0f); in testInsert()
118 mInsertHelper.bind(mInsertHelper.getColumnIndex("string_value"), "test insert"); in testInsert()
120 mInsertHelper.bind(mInsertHelper.getColumnIndex("blob_value"), blob); in testInsert()
142 mInsertHelper.bind(mInsertHelper.getColumnIndex("_id"), id); in testInsert()
209 mInsertHelper.bind(mInsertHelper.getColumnIndex("boolean_value"), true); in testReplace()
210 mInsertHelper.bind(mInsertHelper.getColumnIndex("int_value"), 10); in testReplace()
[all …]
/cts/tests/tests/telecom/ThirdPtyInCallServiceTestApp/src/android/telecom/cts/thirdptyincallservice/
DCtsThirdPartyInCallServiceControl.java35 public boolean checkBindStatus(boolean bind) {
36 return CtsThirdPartyInCallService.checkBindStatus(bind);
45 public void resetLatchForServiceBound(boolean bind) {
46 CtsThirdPartyInCallService.resetLatchForServiceBound(bind);
DCtsThirdPartyInCallService.java92 public static void resetLatchForServiceBound(boolean bind) { in resetLatchForServiceBound() argument
94 if (bind) { in resetLatchForServiceBound()
104 public static boolean checkBindStatus(boolean bind) { in checkBindStatus() argument
106 "checking latch status: service " + (bind ? "bound" : "not bound")); in checkBindStatus()
107 return bind ? in checkBindStatus()
/cts/hostsidetests/devicepolicy/app/CorpOwnedManagedProfile/src/com/android/cts/comp/
DBindDeviceAdminServiceGoodSetupTest.java88 bind(implicitIntent, EMPTY_SERVICE_CONNECTION, targetUser); in testCannotBind_implicitIntent()
104 bind(notResolvableIntent, EMPTY_SERVICE_CONNECTION, targetUser)); in testCannotBind_notResolvableIntent()
115 bind(serviceIntent, EMPTY_SERVICE_CONNECTION, targetUser); in testCannotBind_unprotectedCrossUserService()
132 bind(serviceIntent, EMPTY_SERVICE_CONNECTION, targetUser); in testCheckCannotBind_nonManagingPackage()
146 bind(serviceIntent, EMPTY_SERVICE_CONNECTION, Process.myUserHandle()); in testCannotBind_sameUser()
203 assertTrue(bind(serviceIntent, serviceConnection, targetUserHandle)); in assertCrossProfileCall()
217 private boolean bind(Intent serviceIntent, ServiceConnection serviceConnection, in bind() method in BindDeviceAdminServiceGoodSetupTest
DBindDeviceAdminServiceFailsTest.java70 bind(serviceIntent, EMPTY_SERVICE_CONNECTION, otherProfile); in checkCannotBind()
78 private boolean bind(Intent serviceIntent, ServiceConnection serviceConnection, in bind() method in BindDeviceAdminServiceFailsTest
/cts/tests/tests/telecom/ThirdPtyInCallServiceTestApp/aidl/android/telecom/cts/thirdptyincallservice/
DICtsThirdPartyInCallServiceControl.aidl21 boolean checkBindStatus(boolean bind); in checkBindStatus() argument
27 void resetLatchForServiceBound(boolean bind); in resetLatchForServiceBound() argument
/cts/tests/tests/telecom/src/android/telecom/cts/carmodetestapp/
DCtsCarModeInCallService.java106 public static boolean checkBindStatus(boolean bind) { in checkBindStatus() argument
107 Log.i(TAG, "checking latch status: service " + (bind ? "bound" : "not bound")); in checkBindStatus()
108 return bind ? checkLatch(sBoundLatch) : checkLatch(sUnboundLatch); in checkBindStatus()
DCtsCarModeInCallServiceControl.java97 public boolean checkBindStatus(boolean bind) {
98 return CtsCarModeInCallService.checkBindStatus(bind);
/cts/tests/app/src/android/app/cts/android/app/cts/tools/
DServiceConnectionHandler.java138 public void bind() { in bind() method in ServiceConnectionHandler
139 bind(mDefaultWaitTime); in bind()
142 public void bind(long timeout) { in bind() method in ServiceConnectionHandler
DServiceProcessController.java208 mConnections[i].bind(timeout); in ensureProcessGone()
/cts/tests/tests/os/src/android/os/image/cts/
DDynamicSystemClientTest.java58 dSClient.bind(); in testDynamicSystemClient()
86 dSClient.bind(); in testDynamicSystemClient_withoutOnStatusChangedListener()
/cts/tests/tests/telecom/src/android/telecom/cts/
DThirdPartyInCallServiceAppOpsPermissionTest.java127 private void assertBindStatus(boolean bind, boolean success) { in assertBindStatus() argument
137 return mICtsThirdPartyInCallServiceControl.checkBindStatus(bind); in assertBindStatus()
143 }, WAIT_FOR_STATE_CHANGE_TIMEOUT_MS, "Unable to " + (bind ? "Bind" : "Unbind") in assertBindStatus()
/cts/tests/tests/telecom/aidl/android/telecom/cts/carmodetestapp/
DICtsCarModeInCallServiceControl.aidl29 boolean checkBindStatus(boolean bind); in checkBindStatus() argument
/cts/common/device-side/util-axt/src/com/android/compatibility/common/util/
DReadElf.java78 public final int bind; field in ReadElf.Symbol
83 this.bind = (st_info >> 4) & 0x0F; in Symbol()
93 switch (bind) { in toBind()
101 return "STB_??? (" + bind + ")"; in toBind()
/cts/tests/tests/os/assets/minijail/
Disolated-common-not-i386.policy7 bind: return EPERM
/cts/hostsidetests/theme/
Davd.py30 s.bind(('', 0))
/cts/tests/tests/selinux/common/jni/
Dandroid_security_SELinuxTargetSdkTest.cpp85 int ret = bind(sock,(struct sockaddr *)&addr,sizeof(addr)); in checkNetlinkRouteBind()
/cts/hostsidetests/securitybulletin/securityPatch/CVE-2016-10229/
Dpoc.c58 bind(s, (struct sockaddr*)&addr, 128); in udp_recv()
/cts/tests/tests/networksecurityconfig/networksecurityconfig-downloadmanager/src/android/security/net/config/cts/
DDownloadManagerTest.java83 serverSocket.bind(null); in testPerDomainCleartextAccepted()
175 s.bind(null); in bindTLSServer()
/cts/hostsidetests/devicepolicy/app/DeviceOwner/src/com/android/cts/deviceowner/proxy/
DPacFileServer.java99 serverConnection.bind(connection, new BasicHttpParams()); in run()
/cts/tests/app/src/android/app/cts/
DActivityManagerProcessStateTest.java339 conn.bind(); in testUidImportanceListener()
340 conn2.bind(); in testUidImportanceListener()
363 conn.bind(); in testUidImportanceListener()
402 conn.bind(); in testUidImportanceListener()
403 conn2.bind(); in testUidImportanceListener()
429 conn2.bind(); in testUidImportanceListener()
438 conn.bind(); in testUidImportanceListener()
505 conn.bind(); in testBackgroundCheckService()
675 conn.bind(); in testBackgroundCheckStopsService()
676 conn2.bind(); in testBackgroundCheckStopsService()
[all …]
DServiceTest.java1606 boolean bind(Context context) { in bind() method in ServiceTest.IsolatedConnectionInfo
1690 ci.bind(context); in doBind()
1697 boolean result = connections[i].bind(context); in doBind()
/cts/suite/audio_quality/test_description/
Dprocessing_main.py210 s.bind((HOST, PORT))
/cts/libs/testserver/src/android/webkit/cts/
DTestWebServer.java582 conn.bind(socket, params); in run()
/cts/apps/CtsVerifier/assets/scripts/
Dexecute_power_tests.py194 dummysocket.bind(("localhost", 0))

12