HomeSort by relevance Sort by last modified time
    Searched defs:protect (Results 1 - 25 of 87) 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/test-base/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 144 DWORD protect = readOnly ? PAGE_READONLY : PAGE_READWRITE; local
147 mFileMapping = CreateFileMapping( mFileHandle, NULL, protect, 0, 0, NULL);
150 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 65 p.protect();
89 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()));
  /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/python/cpython2/Lib/test/
test_sys_setprofile.py 348 def protect(f, p): function
352 protect_ident = ident(protect)
364 protect(callable, p)
  /external/python/cpython3/Lib/test/
test_sys_setprofile.py 346 def protect(f, p): function
350 protect_ident = ident(protect)
362 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 233 * Protect a socket from VPN connections. After protecting, data sent
237 * outside of VPN. For example, a VPN tunnel should protect itself if its
246 public boolean protect(int socket) { method in class:VpnService
251 * Convenience method to protect a {@link Socket} from VPN connections.
254 * @see #protect(int)
256 public boolean protect(Socket socket) { method in class:VpnService
257 return protect(socket.getFileDescriptor$().getInt$());
261 * Convenience method to protect a {@link DatagramSocket} from VPN
265 * @see #protect(int)
267 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
344 protect |= 1;
353 protect |= 2;
355 if (p_encoder_params->u16BitRate < previous_u16BitRate) protect |= 3;
360 if (protect == 3) {
    [all...]
  /external/python/cpython2/Mac/Modules/qd/
_Qdmodule.c 4754 Boolean protect; local
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/map/
BluetoothMapContent.java 455 String protect = "no"; local
459 protect = "yes";
463 Log.d(TAG, "setProtected: " + protect + "\n");
465 e.setProtect(protect);
    [all...]

Completed in 345 milliseconds

1 2 3 4