/external/icu/icu4c/source/i18n/ |
D | listformatter.cpp | 88 owned(other.owned), data(other.data) { in ListFormatter() 89 if (other.owned != nullptr) { in ListFormatter() 90 owned = new ListFormatInternal(*other.owned); in ListFormatter() 91 data = owned; in ListFormatter() 99 delete owned; in operator =() 100 if (other.owned) { in operator =() 101 owned = new ListFormatInternal(*other.owned); in operator =() 102 data = owned; in operator =() 104 owned = nullptr; in operator =() 304 owned = new ListFormatInternal(listFormatData, errorCode); in ListFormatter() [all …]
|
/external/clang/test/Analysis/ |
D | properties.m | 499 [p.name release]; // expected-warning{{not owned}} 502 [p.friend release]; // expected-warning{{not owned}} 507 [friend release]; // expected-warning{{not owned}} 536 [self.name release]; // expected-warning{{not owned}} 666 [_unownedProp release]; // FIXME-warning{{not owned at this point by the caller}} 693 [_implicitSynthProp release]; // FIXME-warning{{not owned at this point by the caller}} 753 id owned = [self.ownedProp retain]; 754 [owned release]; 756 clang_analyzer_eval(owned == _ownedProp); // expected-warning{{TRUE}} 761 id owned = [self.ownedProp retain]; [all …]
|
/external/vboot_reference/utility/ |
D | tpm-dad-lock | 10 owned=$(cat /sys/class/misc/tpm0/device/owned) 11 if [ "$owned" = "" ]; then 15 if [ "$owned" = "0" ]; then
|
D | 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 202 echo > tpm-owned
|
D | tpmc.c | 236 uint8_t owned = 0; in HandlerGetOwnership() local 242 result = TlclGetOwnership(&owned); in HandlerGetOwnership() 244 printf("Owned: %s\n", owned ? "yes" : "no"); in HandlerGetOwnership()
|
/external/tensorflow/tensorflow/compiler/xla/service/ |
D | maybe_owning_device_memory.h | 32 explicit MaybeOwningDeviceMemory(OwningDeviceMemory owned) in MaybeOwningDeviceMemory() argument 33 : mem_(std::move(owned)) {} in MaybeOwningDeviceMemory() 44 MaybeOwningDeviceMemory& operator=(OwningDeviceMemory owned) { 45 mem_ = std::move(owned);
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ThreadReference/ |
D | OwnedMonitorsTest.java | 81 int owned = reply.getNextValueAsInt(); in testOwnedMonitors001() local 82 logWriter.println("owned monitors: " + owned); in testOwnedMonitors001() 87 for (int i =0; i < owned; i++) { in testOwnedMonitors001() 116 if (owned < 2) { in testOwnedMonitors001() 117 … printErrorAndFail("wrong number of owned monitors: " + owned + " (expected at least 2)"); in testOwnedMonitors001()
|
/external/clang/test/SemaObjC/ |
D | arc-decls.m | 57 … expected-error {{property follows Cocoa naming convention for returning 'owned' objects}} expecte… 58 … expected-error {{property follows Cocoa naming convention for returning 'owned' objects}} expecte… 59 … expected-error {{property follows Cocoa naming convention for returning 'owned' objects}} expecte… 61 … expected-error {{property follows Cocoa naming convention for returning 'owned' objects}} expecte… 62 … expected-error {{property follows Cocoa naming convention for returning 'owned' objects}} expecte… 63 … expected-error {{property follows Cocoa naming convention for returning 'owned' objects}} expecte… 80 …ewFoo; // expected-error {{property follows Cocoa naming convention for returning 'owned' objects}} 85 …ewBar; // expected-error {{property follows Cocoa naming convention for returning 'owned' objects}} 87 … expected-error {{property follows Cocoa naming convention for returning 'owned' objects}} expecte… 90 … expected-error {{property follows Cocoa naming convention for returning 'owned' objects}} expecte…
|
/external/python/cpython2/Python/ |
D | thread_nt.h | 13 LONG owned ; member 22 mutex->owned = -1 ; /* No threads have entered NonRecursiveMutex */ in InitializeNonRecursiveMutex() 45 if (InterlockedCompareExchange(&mutex->owned, 0, -1) != -1) in EnterNonRecursiveMutex() 50 ret = InterlockedIncrement(&mutex->owned) ? in EnterNonRecursiveMutex() 64 InterlockedDecrement(&mutex->owned) < 0 || in LeaveNonRecursiveMutex()
|
/external/autotest/client/site_tests/security_RootfsOwners/ |
D | control | 8 Ensures there are no files owned by chronos/chronos-access on the rootfs. 12 Ensures there are no files owned by chronos/chronos-access on the rootfs. 15 Fail if there are any files owned by chronos/chronos-access on the rootfs.
|
/external/libcap/doc/ |
D | capability.notes | 19 changing all of the system binaries and directories to be owned by 26 required for the superuser to delete files owned by a non-root user in 27 a 'sticky-bit' protected non-root owned directory. Thus, the sticky 29 daemon where the directory and the files it contains are owned by the 39 the system owned by root, it becomes significantly harder for such a
|
/external/grpc-grpc/src/php/ext/grpc/ |
D | call.h | 31 bool owned; 47 zval *grpc_php_wrap_call(grpc_call *wrapped, bool owned TSRMLS_DC);
|
D | call.c | 37 if (p->owned && p->wrapped != NULL) { 179 zval *grpc_php_wrap_call(grpc_call *wrapped, bool owned TSRMLS_DC) { in grpc_php_wrap_call() 186 call->owned = owned; in grpc_php_wrap_call() 242 call->owned = true; in PHP_METHOD()
|
/external/grpc-grpc/test/cpp/util/ |
D | byte_buffer_test.cc | 109 bool owned = false; in TEST_F() local 113 buffer, &send_buffer, &owned); in TEST_F() 115 EXPECT_TRUE(owned); in TEST_F()
|
/external/autotest/client/site_tests/platform_CryptohomeTPMReOwn/ |
D | control | 7 PURPOSE = "Verify that cryptohome re-creates the user's vault directory when the TPM is re-owned." 16 when the TPM is re-owned.
|
/external/Reactive-Extensions/RxCpp/Rx/v2/src/rxcpp/schedulers/ |
D | rx-currentthread.hpp | 48 static bool owned() { in owned() function 193 if (queue_type::owned()) { in schedule() 248 static bool is_schedule_required() { return !queue_type::owned(); } in is_schedule_required()
|
/external/selinux/libselinux/src/ |
D | regex.c | 276 int owned; /* member 302 (*regex)->owned = 1; in regex_prepare_data() 336 (*regex)->owned = 0; in regex_load_mmap() 380 if (regex->owned) { in get_pcre_extra() 442 if (regex->owned) { in regex_data_free()
|
/external/iptables/extensions/ |
D | libxt_owner.man | 9 Matches if the packet socket's file structure (if it has one) is owned by the 15 Matches if the packet socket's file structure is owned by the given group.
|
/external/vboot_reference/firmware/lib/tpm_lite/ |
D | mocked_tlcl.c | 145 uint32_t TlclGetOwnership(uint8_t* owned) { in TlclGetOwnership() argument 146 *owned = 0; in TlclGetOwnership()
|
/external/squashfs-tools/RELEASE-READMEs/ |
D | README-2.0 | 34 5. New mksquashfs -all-root, -root-owned, -force-uid, and -force-gid 87 -root-owned 91 This allows root owned filesystems to be built without root access 97 be owned by the specified uid. The uid can be specified either by 103 be group owned by the specified gid. The gid can be specified either by
|
/external/cros/system_api/dbus/login_manager/ |
D | policy_descriptor.proto | 14 // |account_id| must be empty. Policy is stored in a device-wide root-owned 28 // device-wide root-owned location in a folder that depends on |account_id|.
|
/external/webrtc/webrtc/base/ |
D | event_tracer.cc | 141 void Start(FILE* file, bool owned) { in Start() argument 145 output_file_owned_ = owned; in Start()
|
/external/selinux/restorecond/ |
D | restorecond.desktop | 4 Comment=Fix file context in owned by the user
|
/external/harfbuzz_ng/test/shaping/data/text-rendering-tests/ |
D | README | 2 text-rendering-tests repository owned by Unicode Consortium:
|
/external/swiftshader/third_party/LLVM/include/llvm/ |
D | IntrinsicsXCore.td | 91 // If any of the resources owned by the thread are ready this returns the 92 // vector of one of the ready resources. If no resources owned by the thread
|