Searched refs:object_id (Results 1 - 25 of 68) sorted by relevance

123

/external/chromium_org/chrome/browser/media_galleries/win/
H A Dmtp_device_object_entry.cc12 MTPDeviceObjectEntry::MTPDeviceObjectEntry(const base::string16& object_id, argument
17 : object_id(object_id),
H A Dmtp_device_object_entry.h19 MTPDeviceObjectEntry(const base::string16& object_id,
27 base::string16 object_id; member in struct:MTPDeviceObjectEntry
H A Dmtp_device_object_enumerator_unittest.cc24 base::string16 object_id; member in struct:__anon4276::MTPDeviceObjectEntryData
68 kTestCases[i].object_id,
79 EXPECT_EQ(kTestCases[i].object_id, enumerator.GetObjectId());
H A Dmtp_device_operations_util.cc162 // Gets the details of the object specified by the |object_id| given the media
167 const base::string16 object_id,
174 DCHECK(!object_id.empty());
206 hr = properties->GetValues(object_id.c_str(),
235 // Creates an MTP device object entry for the given |device| and |object_id|.
238 const base::string16& object_id) {
241 DCHECK(!object_id.empty());
247 if (GetObjectDetails(device, object_id, &name, &is_directory, &size,
249 entry = MTPDeviceObjectEntry(object_id, name, is_directory, size,
285 if (entry.object_id
166 GetObjectDetails(IPortableDevice* device, const base::string16 object_id, base::string16* name, bool* is_directory, int64* size, base::Time* last_modified_time) argument
237 GetMTPDeviceObjectEntry(IPortableDevice* device, const base::string16& object_id) argument
323 GetFileEntryInfo( IPortableDevice* device, const base::string16& object_id, base::File::Info* file_entry_info) argument
[all...]
H A Dmtp_device_operations_util.h31 // Gets the details of the object specified by |object_id| from the given MTP
37 const base::string16& object_id,
/external/chromium_org/chrome/browser/sync/glue/
H A Dinvalidation_helper.h15 invalidation::ObjectId* object_id);
H A Dinvalidation_helper.cc12 invalidation::ObjectId* object_id) {
17 object_id->Init(ipc::invalidation::ObjectSource::CHROME_SYNC,
11 RealModelTypeToObjectId(ModelType model_type, invalidation::ObjectId* object_id) argument
/external/chromium_org/components/invalidation/
H A Dinvalidation_util.cc27 DCHECK(a.object_id() == b.object_id())
28 << "a: " << ObjectIdToString(a.object_id()) << ", "
29 << "b: " << ObjectIdToString(a.object_id());
44 const invalidation::ObjectId& object_id) {
46 value->SetInteger("source", object_id.source());
47 value->SetString("name", object_id.name());
63 std::string ObjectIdToString(const invalidation::ObjectId& object_id) { argument
64 scoped_ptr<base::DictionaryValue> value(ObjectIdToValue(object_id));
43 ObjectIdToValue( const invalidation::ObjectId& object_id) argument
H A Dinvalidation_util.h47 const invalidation::ObjectId& object_id);
53 const invalidation::ObjectId& object_id);
H A Dsync_invalidation_listener.cc128 const invalidation::ObjectId& id = invalidation.object_id();
148 const invalidation::ObjectId& object_id,
156 Invalidation unknown_version = Invalidation::InitUnknownVersion(object_id);
227 const invalidation::ObjectId& object_id,
232 << ObjectIdToString(object_id) << " " << new_state;
236 registration_manager_->MarkRegistrationLost(object_id);
242 const invalidation::ObjectId& object_id,
248 << ObjectIdToString(object_id)
255 registration_manager_->MarkRegistrationLost(object_id);
262 // Either way, block future registration attempts for |object_id|
146 InvalidateUnknownVersion( invalidation::InvalidationClient* client, const invalidation::ObjectId& object_id, const invalidation::AckHandle& ack_handle) argument
225 InformRegistrationStatus( invalidation::InvalidationClient* client, const invalidation::ObjectId& object_id, InvalidationListener::RegistrationState new_state) argument
240 InformRegistrationFailure( invalidation::InvalidationClient* client, const invalidation::ObjectId& object_id, bool is_transient, const std::string& error_message) argument
[all...]
/external/chromium_org/sync/tools/
H A Dinvalidation_helper.h15 invalidation::ObjectId* object_id);
H A Dinvalidation_helper.cc12 invalidation::ObjectId* object_id) {
17 object_id->Init(ipc::invalidation::ObjectSource::CHROME_SYNC,
11 RealModelTypeToObjectId(ModelType model_type, invalidation::ObjectId* object_id) argument
/external/chromium_org/tools/telemetry/telemetry/core/heap/
H A Dlive_heap_object.py9 object_id: int, identifier for the object.
21 def __init__(self, object_id, type_string, class_name):
25 object_id: int, identifier for the LiveHeapObject.
29 self.object_id = object_id
54 prefix = 'LiveHeapObject(' + str(self.object_id) + ' '
/external/chromium_org/content/renderer/java/
H A Dgin_java_bridge_dispatcher.cc85 ObjectID object_id) {
88 named_objects_.insert(std::make_pair(name, object_id));
100 ObjectID object_id,
103 routing_id(), object_id, methods));
106 bool GinJavaBridgeDispatcher::HasJavaMethod(ObjectID object_id, argument
110 routing_id(), object_id, method_name, &result));
115 ObjectID object_id,
122 object_id,
135 GinJavaBridgeObject* GinJavaBridgeDispatcher::GetObject(ObjectID object_id) { argument
136 GinJavaBridgeObject* result = objects_.Lookup(object_id);
83 OnAddNamedObject( const std::string& name, ObjectID object_id) argument
99 GetJavaMethods( ObjectID object_id, std::set<std::string>* methods) argument
114 InvokeJavaMethod( ObjectID object_id, const std::string& method_name, const base::ListValue& arguments, GinJavaBridgeError* error) argument
145 OnGinJavaBridgeObjectDeleted(ObjectID object_id) argument
[all...]
H A Dgin_java_bridge_dispatcher.h50 void GetJavaMethods(ObjectID object_id, std::set<std::string>* methods);
51 bool HasJavaMethod(ObjectID object_id, const std::string& method_name);
52 scoped_ptr<base::Value> InvokeJavaMethod(ObjectID object_id,
56 GinJavaBridgeObject* GetObject(ObjectID object_id);
57 void OnGinJavaBridgeObjectDeleted(ObjectID object_id);
61 ObjectID object_id);
H A Dgin_java_bridge_object.h31 GinJavaBridgeDispatcher::ObjectID object_id() const { return object_id_; } function in class:content::GinJavaBridgeObject
47 GinJavaBridgeDispatcher::ObjectID object_id);
50 GinJavaBridgeDispatcher::ObjectID object_id);
55 GinJavaBridgeDispatcher::ObjectID object_id);
H A Dgin_java_bridge_object.cc31 GinJavaBridgeDispatcher::ObjectID object_id) {
39 new GinJavaBridgeObject(isolate, dispatcher, object_id);
57 GinJavaBridgeDispatcher::ObjectID object_id) {
59 blink::mainThreadIsolate(), dispatcher, object_id);
65 GinJavaBridgeDispatcher::ObjectID object_id)
68 object_id_(object_id),
154 GinJavaBridgeDispatcher::ObjectID object_id; local
155 if (gin_value->GetAsObjectID(&object_id)) {
156 result = dispatcher_->GetObject(object_id);
27 InjectNamed( blink::WebFrame* frame, const base::WeakPtr<GinJavaBridgeDispatcher>& dispatcher, const std::string& object_name, GinJavaBridgeDispatcher::ObjectID object_id) argument
55 InjectAnonymous( const base::WeakPtr<GinJavaBridgeDispatcher>& dispatcher, GinJavaBridgeDispatcher::ObjectID object_id) argument
62 GinJavaBridgeObject( v8::Isolate* isolate, const base::WeakPtr<GinJavaBridgeDispatcher>& dispatcher, GinJavaBridgeDispatcher::ObjectID object_id) argument
/external/chromium_org/content/browser/android/java/
H A Dgin_java_bridge_dispatcher_host.cc142 GinJavaBoundObject::ObjectID object_id = g_next_object_id.GetNext() + 1; local
145 objects_[object_id] = new_object;
151 DCHECK_EQ(object_id, added_object_id);
160 return object_id;
165 GinJavaBoundObject::ObjectID* object_id) {
173 *object_id = pair.first;
181 GinJavaBoundObject::ObjectID object_id) {
182 scoped_refptr<GinJavaBoundObject> object = FindObject(object_id);
224 GinJavaBoundObject::ObjectID object_id; local
226 bool existing_object = FindObjectId(object, &object_id);
163 FindObjectId( const base::android::JavaRef<jobject>& object, GinJavaBoundObject::ObjectID* object_id) argument
180 GetObjectWeakRef( GinJavaBoundObject::ObjectID object_id) argument
315 GinJavaBoundObject::ObjectID object_id = 0; local
392 FindObject( GinJavaBoundObject::ObjectID object_id) argument
402 OnGetMethods( GinJavaBoundObject::ObjectID object_id, std::set<std::string>* returned_method_names) argument
416 OnHasMethod( GinJavaBoundObject::ObjectID object_id, const std::string& method_name, bool* result) argument
429 OnInvokeMethod( GinJavaBoundObject::ObjectID object_id, const std::string& method_name, const base::ListValue& arguments, base::ListValue* wrapped_result, content::GinJavaBridgeError* error_code) argument
476 OnObjectWrapperDeleted( GinJavaBoundObject::ObjectID object_id) argument
[all...]
H A Dgin_java_bridge_dispatcher_host.h65 GinJavaBoundObject::ObjectID object_id) OVERRIDE;
85 GinJavaBoundObject::ObjectID object_id);
87 GinJavaBoundObject::ObjectID* object_id);
94 void OnGetMethods(GinJavaBoundObject::ObjectID object_id,
96 void OnHasMethod(GinJavaBoundObject::ObjectID object_id,
99 void OnInvokeMethod(GinJavaBoundObject::ObjectID object_id,
104 void OnObjectWrapperDeleted(GinJavaBoundObject::ObjectID object_id);
/external/chromium_org/ppapi/proxy/
H A Dppb_var_deprecated_proxy.h38 void OnMsgAddRefObject(int64 object_id);
39 void OnMsgReleaseObject(int64 object_id);
91 void DoReleaseObject(int64 object_id);
/external/chromium_org/content/common/android/
H A Dgin_java_bridge_value_unittest.cc65 scoped_ptr<base::BinaryValue> object_id(
67 ASSERT_TRUE(object_id.get());
68 EXPECT_TRUE(GinJavaBridgeValue::ContainsGinJavaBridgeValue(object_id.get()));
70 GinJavaBridgeValue::FromValue(object_id.get()));
/external/chromium_org/components/autofill/content/browser/wallet/
H A Dwallet_address.cc27 const std::string& object_id) {
105 object_id,
150 const std::string& object_id,
162 object_id_(object_id),
171 std::string object_id; local
172 if (!dictionary.GetString("id", &object_id)) {
176 return scoped_ptr<Address>(CreateAddressInternal(dictionary, object_id));
182 std::string object_id; local
183 dictionary.GetString("id", &object_id);
184 return scoped_ptr<Address>(CreateAddressInternal(dictionary, object_id));
26 CreateAddressInternal(const base::DictionaryValue& dictionary, const std::string& object_id) argument
141 Address(const std::string& country_name_code, const base::string16& recipient_name, const std::vector<base::string16>& street_address, const base::string16& locality_name, const base::string16& dependent_locality_name, const base::string16& administrative_area_name, const base::string16& postal_code_number, const base::string16& sorting_code, const base::string16& phone_number, const std::string& object_id, const std::string& language_code) argument
[all...]
H A Dwallet_address.h55 const std::string& object_id,
117 const std::string& object_id() const { return object_id_; } function in class:autofill::wallet::Address
150 void set_object_id(const std::string& object_id) { argument
151 object_id_ = object_id;
163 // formatting). Therefore, |object_id| and |language_code| are ignored.
166 // Tests if this address exact matches |other| including |object_id| and
/external/chromium_org/win8/metro_driver/ime/
H A Dime_popup_monitor.cc22 LONG object_id,
19 ImeEventCallback(HWINEVENTHOOK win_event_hook_handle, DWORD event, HWND window_handle, LONG object_id, LONG child_id, DWORD event_thread, DWORD event_time) argument
/external/chromium_org/chrome/test/chromedriver/chrome/
H A Dweb_view_impl_unittest.cc170 std::string object_id; local
172 &client, 0, std::string(), &got_object, &object_id).IsOk());
174 ASSERT_TRUE(object_id.empty());
184 std::string object_id; local
186 &client, 0, std::string(), &got_object, &object_id).IsOk());
188 ASSERT_STREQ("id", object_id.c_str());

Completed in 651 milliseconds

123