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

1 2 3 4

  /external/junit/src/main/java/junit/framework/
Protectable.java 13 public abstract void protect() throws Throwable; method in interface:Protectable
TestResult.java 121 public void protect() throws Throwable {
142 p.protect();
  /frameworks/base/legacy-test/src/junit/framework/
Protectable.java 13 public abstract void protect() throws Throwable; method in interface:Protectable
TestResult.java 114 public void protect() throws Throwable {
133 p.protect();
  /external/webrtc/webrtc/test/fuzzers/
producer_fec_fuzzer.cc 43 bool protect = static_cast<bool>(data[i++] % 2); local
44 if (protect) {
  /system/core/libutils/
FileMap.cpp 136 DWORD protect = readOnly ? PAGE_READONLY : PAGE_READWRITE; local
139 mFileMapping = CreateFileMapping( mFileHandle, NULL, protect, 0, 0, NULL);
142 mFileHandle, protect, GetLastError() );
  /external/compiler-rt/lib/msan/
msan_linux.cc 60 // Depending on the kernel configuration, we may not be able to protect
69 Printf("FATAL: Cannot protect memory range %p - %p.\n", beg, end);
136 bool protect = type == MappingDesc::INVALID || local
138 CHECK(!(map && protect));
139 if (!map && !protect)
149 if (protect) {
  /tools/tradefederation/core/src/com/android/tradefed/testtype/
DeviceTestResult.java 63 p.protect();
87 public void protect() throws Throwable {
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/location/base/
GnssCtsTestResult.java 102 protectable.protect();
  /cts/tests/tests/net/src/android/net/cts/
VpnServiceTest.java 67 assertFalse(mVpnService.protect(socket));
81 assertFalse(mVpnService.protect(socket));
96 assertFalse(mVpnService.protect(descriptor.getFd()));
  /prebuilts/ndk/r13/sources/third_party/vulkan/src/
genvk.py 25 # protect - whether to use #ifndef protections
33 protect = True variable
56 protect = False variable
152 protectFile = protect
153 protectFeature = protect
154 protectProto = protect
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/base/
SensorCtsTestResult.java 104 protectable.protect();
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_sys_setprofile.py 348 def protect(f, p): function
352 protect_ident = ident(protect)
364 protect(callable, p)
  /external/webrtc/webrtc/modules/rtp_rtcp/source/
rtp_format_vp8.cc 231 bool protect = local
233 return protect ? kProtectedPacket : kUnprotectedPacket;
rtp_format_vp9.cc 492 bool protect = local
494 return protect ? kProtectedPacket : kUnprotectedPacket;
  /frameworks/base/core/java/android/net/
VpnService.java 198 * Protect a socket from VPN connections. After protecting, data sent
202 * outside of VPN. For example, a VPN tunnel should protect itself if its
211 public boolean protect(int socket) { method in class:VpnService
216 * Convenience method to protect a {@link Socket} from VPN connections.
219 * @see #protect(int)
221 public boolean protect(Socket socket) { method in class:VpnService
222 return protect(socket.getFileDescriptor$().getInt$());
226 * Convenience method to protect a {@link DatagramSocket} from VPN
230 * @see #protect(int)
232 public boolean protect(DatagramSocket socket) method in class:VpnService
    [all...]
  /frameworks/native/opengl/tools/glgen2/registry/
genheaders.py 30 # protect - whether to use #ifndef protections
38 protect = True variable
60 protect = False variable
264 protectFile = protect
265 protectFeature = protect
266 protectProto = protect
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_sys_setprofile.py 348 def protect(f, p): function
352 protect_ident = ident(protect)
364 protect(callable, p)
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_sys_setprofile.py 348 def protect(f, p): function
352 protect_ident = ident(protect)
364 protect(callable, p)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_sys_setprofile.py 348 def protect(f, p): function
352 protect_ident = ident(protect)
364 protect(callable, p)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_sys_setprofile.py 348 def protect(f, p): function
352 protect_ident = ident(protect)
364 protect(callable, p)
  /system/bt/stack/a2dp/
a2dp_sbc_encoder.cc 198 uint8_t protect = 0; local
343 protect |= 1;
352 protect |= 2;
354 if (p_encoder_params->u16BitRate < previous_u16BitRate) protect |= 3;
359 if (protect == 3) {
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/map/
BluetoothMapContent.java 467 String protect = "no"; local
472 protect = "yes";
475 if (V) Log.d(TAG, "setProtected: " + protect + "\n");
476 e.setProtect(protect);
    [all...]
  /prebuilts/tools/common/m2/repository/net/sf/json-lib/json-lib/2.3/
json-lib-2.3-jdk15.jar 
  /cts/tools/vm-tests-tf/lib/
junit.jar 

Completed in 774 milliseconds

1 2 3 4