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

1 2

  /external/chromium_org/chrome/browser/sync/glue/
synced_session_tracker.h 79 // that the requested windows and tabs are owned (by setting the boolean
82 // windows and tabs not owned.
86 // longer owned.
91 // |session_tag|, and markes the window as being owned. If none existed for
99 // being owned. If none existed for that session, creates one. Ownership of
155 // mapped tabs, unmapped tabs are owned by the unmapped_tabs_ container).
156 // Note, we pair pointers with bools so that we can track what is owned and
168 owned(false),
170 SessionTabWrapper(SessionTab* tab_ptr, OwnedState owned, int tab_node_id)
172 owned(owned == IS_OWNED)
180 bool owned; member in struct:browser_sync::SyncedSessionTracker::SessionTabWrapper
196 bool owned; member in struct:browser_sync::SyncedSessionTracker::SessionWindowWrapper
    [all...]
synced_session_tracker.cc 161 window_map_iter->second.owned = false;
174 tab_map_iter->second.owned = false;
183 if (!window_wrapper.owned) {
195 if (!tab_wrapper.owned) {
246 iter->second.owned = true;
290 synced_tab_map_[session_tag][tab_id].owned = true;
  /external/chromium_org/chrome/browser/content_settings/
content_settings_provider_unittest.cc 63 bool owned = mock_provider.SetWebsiteSetting( local
69 EXPECT_TRUE(owned);
78 owned = mock_provider.SetWebsiteSetting(
84 EXPECT_FALSE(owned);
93 owned = mock_provider.SetWebsiteSetting(
99 EXPECT_TRUE(owned);
content_settings_default_provider_unittest.cc 105 bool owned = provider_.SetWebsiteSetting( local
111 EXPECT_FALSE(owned);
236 bool owned = otr_provider.SetWebsiteSetting( local
242 EXPECT_FALSE(owned);
content_settings_policy_provider_unittest.cc 191 bool owned = provider.SetWebsiteSetting(yt_url_pattern, local
196 EXPECT_FALSE(owned);
  /external/icu/icu4c/source/common/
listformatter.cpp 92 owned(other.owned), data(other.data) {
93 if (other.owned != NULL) {
94 owned = new ListFormatInternal(*other.owned);
95 data = owned;
103 delete owned;
104 if (other.owned) {
105 owned = new ListFormatInternal(*other.owned);
    [all...]
  /system/core/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 53 * owned by 'TESTED_THREAD' thread
90 int owned = reply.getNextValueAsInt(); local
91 logWriter.println("owned monitors: " + owned);
96 for (int i =0; i < owned; i++) {
124 // check that at least two owned monitors are returned
125 if (owned < 2) {
126 printErrorAndFail("wrong number of owned monitors: " + owned + " (expected at least 2)");
  /sdk/emulator/opengl/host/libs/Translator/include/GLcommon/
FramebufferData.h 64 GLenum target; // OGL if owned, GLES otherwise
65 GLuint name; // OGL if owned, GLES otherwise
67 bool owned; member in struct:FramebufferData::attachPoint
  /system/core/libsysutils/src/
SocketClient.cpp 15 SocketClient::SocketClient(int socket, bool owned) {
16 init(socket, owned, false);
19 SocketClient::SocketClient(int socket, bool owned, bool useCmdNum) {
20 init(socket, owned, useCmdNum);
23 void SocketClient::init(int socket, bool owned, bool useCmdNum) {
25 mSocketOwned = owned;
  /sdk/emulator/opengl/host/libs/Translator/GLcommon/
FramebufferData.cpp 39 m_attachPoints[i].owned = false;
59 m_attachPoints[idx].owned != takeOwnership) {
66 m_attachPoints[idx].owned = takeOwnership;
108 if(m_attachPoints[idx].owned)
124 m_attachPoints[idx].owned = false;
134 // This dummy color texture will is owned by the FramebufferObject,
  /external/chromium_org/chrome/browser/ui/ash/launcher/
multi_profile_browser_status_monitor.cc 33 bool owned = multi_user_util::IsProfileFromActiveUser((*it)->profile()); local
35 if (owned && !shown)
37 else if (!owned && shown)
  /external/icu/icu4c/source/common/unicode/
listformatter.h 161 ListFormatInternal* owned; member in class:ListFormatter
  /external/qemu/util/
qemu-thread-win32.c 55 int owned; local
57 owned = TryEnterCriticalSection(&mutex->lock);
58 if (owned) {
62 return !owned;
  /ndk/tests/device/test-stlport_shared-exception/jni/
unroll1.cpp 350 Node(const Interval &owned, const Interval &allocated)
351 : domain_m(owned), allocated_m(allocated) {}
  /ndk/tests/device/test-stlport_static-exception/jni/
unroll1.cpp 350 Node(const Interval &owned, const Interval &allocated)
351 : domain_m(owned), allocated_m(allocated) {}
  /external/chromium_org/ui/views/widget/
native_widget_private.h 67 Widget::Widgets* owned);
114 // method assumes that the widget's child layers which are owned by a view are
  /external/chromium_org/third_party/libjingle/source/talk/base/
stream.h 143 // GetReadData returns a pointer to a buffer which is owned by the stream.
153 // GetWriteBuffer returns a pointer to a buffer which is owned by the stream.
255 // In the meantime, use the owned flag to indicate whether the adapter should
262 explicit StreamAdapterInterface(StreamInterface* stream, bool owned = true);
329 void Attach(StreamInterface* stream, bool owned = true);
    [all...]
  /external/chromium_org/third_party/webrtc/base/
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);
312 void Attach(StreamInterface* stream, bool owned = true);
  /external/chromium_org/chromeos/dbus/
cryptohome_client.h 198 virtual bool CallTpmIsOwnedAndBlock(bool* owned) = 0;
mock_cryptohome_client.h 65 MOCK_METHOD1(CallTpmIsOwnedAndBlock, bool(bool* owned));
fake_cryptohome_client.cc 186 bool FakeCryptohomeClient::CallTpmIsOwnedAndBlock(bool* owned) {
187 *owned = true;
fake_cryptohome_client.h 63 virtual bool CallTpmIsOwnedAndBlock(bool* owned) OVERRIDE;
  /external/chromium_org/third_party/skia/tests/
skia_test.cpp 184 SkAutoTDelete<Test> owned(test);
  /external/skia/tests/
skia_test.cpp 184 SkAutoTDelete<Test> owned(test);

Completed in 561 milliseconds

1 2