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

1 2 3

  /external/selinux/mcstrans/share/examples/default/
setrans.conf 16 # Secret with compartments A and B.
26 # Secret level with compartments
27 s2=Secret
33 s1-s2=Unclassified-Secret
36 # ranges for Secret with compartments
37 s0-s2=SystemLow-Secret
38 s0-s2:c0=SystemLow-Secret:A
39 s0-s2:c1=SystemLow-Secret:B
40 s0-s2:c0,c1=SystemLow-Secret:AB
41 s1-s2:c0=Unclassified-Secret:
    [all...]
  /external/selinux/mcstrans/share/examples/include/setrans.d/
include-example 16 # Secret with compartments A and B.
26 # Secret level with compartments
27 s2=Secret
33 s1-s2=Unclassified-Secret
36 # ranges for Secret with compartments
37 s0-s2=SystemLow-Secret
38 s0-s2:c0=SystemLow-Secret:A
39 s0-s2:c1=SystemLow-Secret:B
40 s0-s2:c0,c1=SystemLow-Secret:AB
41 s1-s2:c0=Unclassified-Secret:
    [all...]
  /external/selinux/mcstrans/share/examples/pipes/
setrans.conf 15 s4:c200.c511=Secret
17 s5:c200.c511=Top Secret
  /external/clang/test/Analysis/
inline.cpp 218 class Secret {
227 Secret obj;
230 clang_analyzer_eval(Secret::value == 42); // expected-warning{{TRUE}}
253 int complicatedExprUser(int input = 2 * Secret::value) {
  /external/mdnsresponder/mDNSWindows/ControlPanel/
SharedSecret.cpp 23 #include <Secret.h>
RegistrationPage.cpp 18 #include <Secret.h>
297 BOOL secret = FALSE; local
312 secret = TRUE;
323 if ( secret )
377 if ( secret )
  /external/google-tv-pairing-protocol/java/src/com/google/polo/wire/protobuf/
ProtobufWireAdapter.java 165 return PoloProto.Secret.parseFrom(payload);
217 } else if (message instanceof PoloProto.Secret) {
422 * Converts a {@link SecretMessage} to a {@link PoloProto.Secret}.
424 private PoloProto.Secret toProto(SecretMessage poloMessage) {
425 PoloProto.Secret secret = new PoloProto.Secret(); local
426 secret.secret = poloMessage.getSecret();
427 return secret;
    [all...]
  /external/googletest/googletest/include/gtest/
gtest-message.h 55 void operator<<(const testing::internal::Secret&, int);
  /external/libvpx/libvpx/third_party/googletest/src/include/gtest/
gtest-message.h 55 void operator<<(const testing::internal::Secret&, int);
  /external/mesa3d/src/gtest/include/gtest/
gtest-message.h 55 void operator<<(const testing::internal::Secret&, int);
  /external/v8/testing/gtest/include/gtest/
gtest-message.h 55 void operator<<(const testing::internal::Secret&, int);
  /external/vulkan-validation-layers/tests/gtest-1.7.0/include/gtest/
gtest-message.h 55 void operator<<(const testing::internal::Secret&, int);
  /prebuilts/ndk/r16/sources/third_party/googletest/googletest/include/gtest/
gtest-message.h 55 void operator<<(const testing::internal::Secret&, int);
  /prebuilts/ndk/r16/sources/third_party/vulkan/src/tests/gtest-1.7.0/include/gtest/
gtest-message.h 55 void operator<<(const testing::internal::Secret&, int);
  /external/google-tv-pairing-protocol/cpp/src/polo/wire/protobuf/
protobufwireadapter.cc 134 Secret secret; local
135 secret.set_secret(&message.secret()[0], message.secret().size());
138 secret.SerializeAsString());
146 ack.set_secret(&message.secret()[0], message.secret().size());
330 Secret secret; local
    [all...]
  /external/protobuf/gtest/include/gtest/internal/
gtest-internal.h 125 // A secret type that Google Test users don't know about. It has no
127 // Secret object, which is what we want.
128 class Secret;
138 // version if x can be implicitly converted to Secret*, and pick the
139 // second version otherwise. Since Secret is a secret and incomplete
140 // type, the only expression a user can write that has type Secret* is
144 char IsNullLiteralHelper(Secret* p);
    [all...]
  /prebuilts/go/darwin-x86/src/crypto/tls/
example_test.go 110 // connection by setting (Pre)-Master-Secret log filename in SSL Protocol
  /prebuilts/go/linux-x86/src/crypto/tls/
example_test.go 110 // connection by setting (Pre)-Master-Secret log filename in SSL Protocol
  /external/google-breakpad/src/testing/gtest/include/gtest/internal/
gtest-internal.h 131 // A secret type that Google Test users don't know about. It has no
133 // Secret object, which is what we want.
134 class Secret;
144 // version if x can be implicitly converted to Secret*, and pick the
145 // second version otherwise. Since Secret is a secret and incomplete
146 // type, the only expression a user can write that has type Secret* is
150 char IsNullLiteralHelper(Secret* p);
    [all...]
  /external/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-internal.h 160 // A secret type that Google Test users don't know about. It has no
162 // Secret object, which is what we want.
163 class Secret;
173 // version if x can be implicitly converted to Secret*, and pick the
174 // second version otherwise. Since Secret is a secret and incomplete
175 // type, the only expression a user can write that has type Secret* is
179 char IsNullLiteralHelper(Secret* p);
    [all...]
  /external/swiftshader/third_party/LLVM/utils/unittest/googletest/include/gtest/internal/
gtest-internal.h 151 // A secret type that Google Test users don't know about. It has no
153 // Secret object, which is what we want.
154 class Secret;
164 // version if x can be implicitly converted to Secret*, and pick the
165 // second version otherwise. Since Secret is a secret and incomplete
166 // type, the only expression a user can write that has type Secret* is
170 char IsNullLiteralHelper(Secret* p);
    [all...]
  /external/google-tv-pairing-protocol/cpp/tests/polo/wire/protobuf/
protobufwireadaptertest.cc 260 std::vector<unsigned char> secret(4);
261 secret[0] = 0xAA;
262 secret[1] = 0xBB;
263 secret[2] = 0xCC;
264 secret[3] = 0xDD;
266 Secret proto;
267 proto.set_secret(&secret[0], secret.size());
277 pairing::message::SecretMessage message(secret);
285 std::vector<unsigned char> secret(4)
    [all...]
  /external/ppp/pppd/plugins/radius/etc/
dictionary.ascend 108 ATTRIBUTE Ascend-Send-Secret 214 string
109 ATTRIBUTE Ascend-Receive-Secret 215 string
  /external/mesa3d/src/gtest/include/gtest/internal/
gtest-internal.h 115 // version if x can be implicitly converted to Secret*, and pick the
116 // second version otherwise. Since Secret is a secret and incomplete
117 // type, the only expression a user can write that has type Secret* is
121 char IsNullLiteralHelper(Secret* p);
    [all...]
  /external/vulkan-validation-layers/tests/gtest-1.7.0/include/gtest/internal/
gtest-internal.h 115 // version if x can be implicitly converted to Secret*, and pick the
116 // second version otherwise. Since Secret is a secret and incomplete
117 // type, the only expression a user can write that has type Secret* is
121 char IsNullLiteralHelper(Secret* p);
    [all...]

Completed in 1966 milliseconds

1 2 3