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

1 2 3 4

  /external/vboot_reference/utility/
tpm-dad-lock 10 owned=$(cat /sys/class/misc/tpm0/device/owned)
11 if [ "$owned" = "" ]; then
15 if [ "$owned" = "0" ]; then
chromeos-tpm-recovery-test 58 if [ -e space.$index.data -a -e tpm-owned ]; then
83 rm -f tpm-owned
180 if [ ! -f tpm-owned ]; then
198 if [ -f tpm-owned ]; then
199 echo "tpm is already owned"
202 echo > tpm-owned
tpmc.c 236 uint8_t owned = 0; local
242 result = TlclGetOwnership(&owned);
244 printf("Owned: %s\n", owned ? "yes" : "no");
  /system/core/libsysutils/include/sysutils/
SocketClient.h 34 SocketClient(int sock, bool owned);
35 SocketClient(int sock, bool owned, bool useCmdNum);
78 void init(int socket, bool owned, bool useCmdNum);
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ThreadReference/
OwnedMonitorsTest.java 54 * owned by 'TESTED_THREAD' thread
81 int owned = reply.getNextValueAsInt(); local
82 logWriter.println("owned monitors: " + owned);
87 for (int i =0; i < owned; i++) {
115 // check that at least two owned monitors are returned
116 if (owned < 2) {
117 printErrorAndFail("wrong number of owned monitors: " + owned + " (expected at least 2)");
  /external/icu/icu4c/source/common/
listformatter.cpp 83 owned(other.owned), data(other.data) {
84 if (other.owned != NULL) {
85 owned = new ListFormatInternal(*other.owned);
86 data = owned;
94 delete owned;
95 if (other.owned) {
96 owned = new ListFormatInternal(*other.owned);
    [all...]
  /system/core/libsysutils/src/
SocketClient.cpp 33 SocketClient::SocketClient(int socket, bool owned) {
34 init(socket, owned, false);
37 SocketClient::SocketClient(int socket, bool owned, bool useCmdNum) {
38 init(socket, owned, useCmdNum);
41 void SocketClient::init(int socket, bool owned, bool useCmdNum) {
43 mSocketOwned = owned;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
thread_nt.h 13 LONG owned ; member in struct:NRMUTEX
22 mutex->owned = -1 ; /* No threads have entered NonRecursiveMutex */
42 /* InterlockedIncrement(&mutex->owned) == 0 means that no thread currently owns the mutex */
45 if (InterlockedCompareExchange(&mutex->owned, 0, -1) != -1)
50 ret = InterlockedIncrement(&mutex->owned) ?
64 InterlockedDecrement(&mutex->owned) < 0 ||
  /external/python/cpython2/Python/
thread_nt.h 13 LONG owned ; member in struct:NRMUTEX
22 mutex->owned = -1 ; /* No threads have entered NonRecursiveMutex */
42 /* InterlockedIncrement(&mutex->owned) == 0 means that no thread currently owns the mutex */
45 if (InterlockedCompareExchange(&mutex->owned, 0, -1) != -1)
50 ret = InterlockedIncrement(&mutex->owned) ?
64 InterlockedDecrement(&mutex->owned) < 0 ||
  /external/vboot_reference/firmware/lib/tpm_lite/
mocked_tlcl.c 145 uint32_t TlclGetOwnership(uint8_t* owned) {
146 *owned = 0;
tlcl.c 420 uint32_t TlclGetOwnership(uint8_t* owned) {
429 * VbAssert(size == sizeof(*owned));
431 Memcpy(owned,
433 sizeof(*owned));
  /external/icu/icu4c/source/common/unicode/
listformatter.h 165 ListFormatInternal* owned; member in class:ListFormatter
  /external/webrtc/webrtc/base/
event_tracer.cc 141 void Start(FILE* file, bool owned) {
145 output_file_owned_ = owned;
stream.h 126 // GetReadData returns a pointer to a buffer which is owned by the stream.
136 // GetWriteBuffer returns a pointer to a buffer which is owned by the stream.
238 // In the meantime, use the owned flag to indicate whether the adapter should
245 explicit StreamAdapterInterface(StreamInterface* stream, bool owned = true);
294 void Attach(StreamInterface* stream, bool owned = true);
  /frameworks/native/libs/gui/
SurfaceControl.cpp 52 bool owned)
53 : mClient(client), mHandle(handle), mGraphicBufferProducer(gbp), mOwned(owned)
194 handle.get(), interface_cast<IGraphicBufferProducer>(gbp), false /* owned */);
  /external/vboot_reference/firmware/include/
tlcl.h 141 * Return 1 if the TPM is owned, 0 otherwise.
201 uint32_t TlclGetOwnership(uint8_t *owned);
  /frameworks/native/libs/gui/include/gui/
SurfaceControl.h 91 bool owned);
  /external/selinux/libselinux/src/
regex.c 276 int owned; /* member in struct:regex_data
277 * non zero if regex and pcre_extra is owned by this
302 (*regex)->owned = 1;
336 (*regex)->owned = 0;
380 if (regex->owned) {
442 if (regex->owned) {
  /compatibility/cdd/9_security-model/
9_5_multi-user-support.md 24 * [C-1-4] MUST ensure that applications owned by and running on behalf a
25 given user cannot list, read, or write to the files owned by any other user,
  /compatibility/cdd/3_software/
3_6_api-namespaces.md 35 * [C-0-5] MUST NOT be in a namespace owned by or referring to another
  /system/security/keystore-engine/
Android.mk 45 # owned by the WiFi user to perform signing operations.
  /external/skia/src/images/
SkImageEncoderFns.h 419 sk_sp<SkColorSpace> owned; local
421 owned = cs->makeSRGBGamma();
422 cs = owned.get();
  /external/skqp/src/images/
SkImageEncoderFns.h 419 sk_sp<SkColorSpace> owned; local
421 owned = cs->makeSRGBGamma();
422 cs = owned.get();
  /system/tpm/tpm_manager/client/
tpm_ownership_dbus_proxy_test.cc 78 EXPECT_TRUE(reply.owned());
  /system/tpm/tpm_manager/server/
tpm_manager_service_test.cc 158 EXPECT_TRUE(reply.owned());
176 EXPECT_TRUE(reply.owned());
196 EXPECT_TRUE(reply.owned());

Completed in 851 milliseconds

1 2 3 4