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

1 2

  /external/chromium_org/chrome/browser/sync/glue/
synced_session_tracker.h 75 // that the requested windows and tabs are owned (by setting the boolean
78 // windows and tabs not owned.
82 // longer owned.
87 // |session_tag|, and markes the window as being owned. If none existed for
95 // being owned. If none existed for that session, creates one. Ownership of
151 // mapped tabs, unmapped tabs are owned by the unmapped_tabs_ container).
152 // Note, we pair pointers with bools so that we can track what is owned and
164 owned(false),
166 SessionTabWrapper(SessionTab* tab_ptr, OwnedState owned, int tab_node_id)
168 owned(owned == IS_OWNED)
176 bool owned; member in struct:browser_sync::SyncedSessionTracker::SessionTabWrapper
192 bool owned; member in struct:browser_sync::SyncedSessionTracker::SessionWindowWrapper
    [all...]
synced_session_tracker.cc 150 window_map_iter->second.owned = false;
163 tab_map_iter->second.owned = false;
172 if (!window_wrapper.owned) {
184 if (!tab_wrapper.owned) {
235 iter->second.owned = true;
279 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);
  /system/core/include/sysutils/
SocketClient.h 33 SocketClient(int sock, bool owned);
34 SocketClient(int sock, bool owned, bool useCmdNum);
73 void init(int socket, bool owned, bool useCmdNum);
  /system/core/libsysutils/src/
SocketClient.cpp 14 SocketClient::SocketClient(int socket, bool owned) {
15 init(socket, owned, false);
18 SocketClient::SocketClient(int socket, bool owned, bool useCmdNum) {
19 init(socket, owned, useCmdNum);
22 void SocketClient::init(int socket, bool owned, bool useCmdNum) {
24 mSocketOwned = owned;
  /external/chromium_org/chrome/browser/ui/ash/launcher/
multi_profile_browser_status_monitor.cc 30 bool owned = multi_user_util::IsProfileFromActiveUser((*it)->profile()); local
32 if (owned && !shown)
34 else if (!owned && shown)
  /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
  /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,
  /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 65 Widget::Widgets* owned);
109 // method assumes that the widget's child layers which are owned by a view are
native_widget_aura.cc     [all...]
  /external/chromium/third_party/libjingle/source/talk/base/
stream.h 130 // GetReadData returns a pointer to a buffer which is owned by the stream.
140 // GetWriteBuffer returns a pointer to a buffer which is owned by the stream.
239 // In the meantime, use the owned flag to indicate whether the adapter should
246 explicit StreamAdapterInterface(StreamInterface* stream, bool owned = true);
310 void Attach(StreamInterface* stream, bool owned = true);
stream.cc 142 bool owned)
143 : stream_(stream), owned_(owned) {
148 void StreamAdapterInterface::Attach(StreamInterface* stream, bool owned) {
154 owned_ = owned;
  /external/chromium_org/chromeos/dbus/
fake_cryptohome_client.cc 165 bool FakeCryptohomeClient::CallTpmIsOwnedAndBlock(bool* owned) {
166 *owned = true;
cryptohome_client.h 179 virtual bool CallTpmIsOwnedAndBlock(bool* owned) = 0;
fake_cryptohome_client.h 63 virtual bool CallTpmIsOwnedAndBlock(bool* owned) OVERRIDE;
mock_cryptohome_client.h 64 MOCK_METHOD1(CallTpmIsOwnedAndBlock, bool(bool* owned));
  /external/chromium_org/third_party/libjingle/source/talk/base/
stream.h 141 // GetReadData returns a pointer to a buffer which is owned by the stream.
151 // GetWriteBuffer returns a pointer to a buffer which is owned by the stream.
253 // In the meantime, use the owned flag to indicate whether the adapter should
260 explicit StreamAdapterInterface(StreamInterface* stream, bool owned = true);
327 void Attach(StreamInterface* stream, bool owned = true);
    [all...]
stream.cc 134 bool owned)
135 : stream_(stream), owned_(owned) {
140 void StreamAdapterInterface::Attach(StreamInterface* stream, bool owned) {
146 owned_ = owned;
    [all...]
  /external/llvm/bindings/ocaml/executionengine/
llvm_executionengine.mli 124 modules owned by the execution engine [ee]. Returns [None] if the function
156 (** [target_data ee] is the target data owned by the execution engine
  /external/skia/tests/
skia_test.cpp 217 SkAutoTDelete<Test> owned(test);
  /external/openfst/src/include/fst/extensions/ngram/
ngram-fst.h 233 void Init(const char* data, bool owned, MappedFile *file = 0);
510 inline void NGramFstImpl<A>::Init(const char* data, bool owned,
517 owned_ = owned;
658 NGramFst(const char* data, bool owned) : ImplToExpandedFst<Impl>(new Impl()) {
659 GetImpl()->Init(data, owned, NULL);

Completed in 1891 milliseconds

1 2