/external/chromium_org/chromeos/dbus/ |
power_policy_controller.cc | 231 int id = next_wake_lock_id_++; local 232 screen_wake_locks_[id] = reason; 234 return id; 238 int id = next_wake_lock_id_++; local 239 system_wake_locks_[id] = reason; 241 return id; 244 void PowerPolicyController::RemoveWakeLock(int id) { 245 if (!screen_wake_locks_.erase(id) && !system_wake_locks_.erase(id)) 246 LOG(WARNING) << "Ignoring request to remove nonexistent wake lock " << id; [all...] |
/external/chromium_org/chromeos/ime/ |
component_extension_ime_manager.h | 20 std::string engine_id; // The engine id. 32 std::string id; // extension id. member in struct:chromeos::ComponentExtensionIME 75 // mapping between input method id and engine components. This function must 110 // Returns list of input method id associated with |language|.
|
/external/chromium_org/content/browser/indexed_db/ |
indexed_db_metadata.h | 19 int64 id, 24 id(id), 29 int64 id; member in struct:content::IndexedDBIndexMetadata 40 int64 id, 46 int64 id; member in struct:content::IndexedDBObjectStoreMetadata 68 int64 id, 75 int64 id; member in struct:content::IndexedDBDatabaseMetadata
|
/external/chromium_org/content/browser/renderer_host/media/ |
video_capture_controller_unittest.cc | 48 virtual void OnError(const VideoCaptureControllerID& id) OVERRIDE { 49 DoError(id); variable 51 virtual void OnBufferCreated(const VideoCaptureControllerID& id, 54 DoBufferCreated(id); variable 56 virtual void OnBufferDestroyed(const VideoCaptureControllerID& id, 58 DoBufferDestroyed(id); variable 60 virtual void OnBufferReady(const VideoCaptureControllerID& id, 64 DoBufferReady(id); variable 67 base::Unretained(controller_), id, this, buffer_id)); 69 virtual void OnEnded(const VideoCaptureControllerID& id) OVERRIDE 70 DoEnded(id); variable [all...] |
video_capture_manager.h | 62 // this value should be a session id previously returned by Open(). 120 // Find a DeviceEntry by its device ID and type, if it is already opened. 125 // if necessary. Returns NULL if the session id is invalid. 154 DeviceInfo* FindDeviceInfoById(const std::string& id, 181 const std::string& id, 186 const std::string id; member in struct:content::VideoCaptureManager::DeviceEntry
|
/external/chromium_org/content/public/android/javatests/src/org/chromium/content/browser/ |
ContentDetectionTestBase.java | 59 * Scrolls to the node with the provided id, taps on it and waits for an intent to come. 60 * @param id Id of the node to scroll and tap. 63 protected String scrollAndTapExpectingIntent(String id) throws Throwable { 69 DOMUtils.scrollNodeIntoView(getContentView(), callbackHelperContainer, id); local 70 DOMUtils.clickNode(this, getContentView(), callbackHelperContainer, id); 79 * Scrolls to the node with the provided id, taps on it and waits for a new page load to finish. 81 * @param id Id of the node to scroll and tap. 84 protected void scrollAndTapNavigatingOut(String id) throws Throwable 90 DOMUtils.scrollNodeIntoView(getContentView(), callbackHelperContainer, id); local [all...] |
/external/chromium_org/content/public/browser/ |
desktop_media_id.cc | 28 // First check if an Id is already assigned to the |window|. 34 // If the windows doesn't have an Id yet assign it. 35 int id = next_id_++; local 36 window_to_id_map_[window] = id; 37 id_to_window_map_[id] = window; 39 return id; 42 aura::Window* GetWindowById(int id) { 43 std::map<int, aura::Window*>::iterator it = id_to_window_map_.find(id); 90 aura::Window* DesktopMediaID::GetAuraWindowById(const DesktopMediaID& id) { 91 DCHECK_EQ(id.type, TYPE_AURA_WINDOW) 116 int64 id; local [all...] |
/external/chromium_org/content/renderer/gpu/ |
compositor_software_output_device.h | 36 virtual void ReclaimSoftwareFrame(unsigned id) OVERRIDE; 45 explicit Buffer(unsigned id, scoped_ptr<base::SharedMemory> mem); 48 unsigned id() const { return id_; } function in class:content::CompositorSoftwareOutputDevice::Buffer 74 CompareById(unsigned id) : id_(id) {} 77 return buffer->id() == id_;
|
/external/chromium_org/content/renderer/media/ |
rtc_data_channel_handler.cc | 60 unsigned short RtcDataChannelHandler::id() const { function in class:content::RtcDataChannelHandler 61 return channel_->id();
|
/external/chromium_org/content/renderer/ |
notification_provider.cc | 53 int id; local 54 bool id_found = manager_.GetId(notification, id); 57 Send(new DesktopNotificationHostMsg_Cancel(routing_id(), id)); 62 int id; local 63 bool id_found = manager_.GetId(notification, id); 66 manager_.UnregisterNotification(id); 86 int id = manager_.RegisterPermissionRequest(callback); local 89 routing_id(), GURL(origin.toString()), id)); 104 if (message.type() == ViewMsg_Navigate::ID) 110 void NotificationProvider::OnDisplay(int id) { [all...] |
/external/chromium_org/extensions/browser/ |
pending_extension_info.h | 31 const std::string& id, 47 const std::string& id() const { return id_; } function in class:extensions::PendingExtensionInfo
|
/external/chromium_org/google_apis/gcm/ |
gcm_client.h | 51 // Message ID. 52 std::string id; member in struct:gcm::GCMClient::OutgoingMessage 90 // |app_id|: application ID. 99 // |app_id|: application ID. 100 // |message_id|: ID of the message being sent. 107 // |app_id|: application ID. 113 // |app_id|: application ID. 117 // |app_id|: application ID. 118 // |message_id|: ID of the message being sent. 155 // |app_id|: application ID [all...] |
/external/chromium_org/gpu/command_buffer/client/ |
buffer_tracker.h | 27 Buffer(GLuint id, 32 : id_(id), 41 GLenum id() const { function in class:gpu::gles2::BufferTracker::Buffer 93 Buffer* CreateBuffer(GLuint id, GLsizeiptr size); 94 Buffer* GetBuffer(GLuint id); 95 void RemoveBuffer(GLuint id);
|
/external/chromium_org/gpu/command_buffer/service/ |
renderbuffer_manager.cc | 74 GLuint id = service_id(); local 75 glDeleteRenderbuffersEXT(1, &id);
|
/external/chromium_org/media/audio/win/ |
device_enumeration_win.cc | 59 // unique ID to the |device_names| list. 115 // unique ID to the |device_names| list. Note that, for Wave on XP, 164 // Get the size (including the terminating NULL) of the endpoint ID of the 172 ScopedCoMem<WCHAR> id; local 173 id.Reset(static_cast<WCHAR*>(CoTaskMemAlloc(size))); 174 if (!id) 177 // Get the endpoint ID string for this waveIn device. 180 reinterpret_cast<DWORD_PTR>(static_cast<WCHAR*>(id)), size); 184 std::string utf8_id = WideToUTF8(static_cast<WCHAR*>(id)); 185 // Check whether the endpoint ID string of this waveIn device matches tha [all...] |
/external/chromium_org/media/video/capture/android/ |
video_capture_device_android.cc | 50 << name.id() 96 int id; local 97 if (!base::StringToInt(device_name_.id(), &id)) 103 env, base::android::GetApplicationContext(), id,
|
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/ |
kernel_object.cc | 185 int id; local 191 id = free_fds_.front(); 195 handle_map_[id] = descriptor; 197 id = handle_map_.size(); 200 return id;
|
/external/chromium_org/net/base/ |
keygen_handler_win.cc | 117 UUID id = { 0 }; local 118 status = UuidCreateSequential(&id); 123 status = UuidToString(&id, &rpc_string);
|
/external/chromium_org/net/disk_cache/flash/ |
log_store_entry.cc | 19 LogStoreEntry::LogStoreEntry(LogStore* store, int32 id) 20 : store_(store), id_(id), init_(false), closed_(false), deleted_(false) { 67 int32 LogStoreEntry::id() const { function in class:disk_cache::LogStoreEntry
|
/external/chromium_org/net/quic/ |
reliable_quic_stream.h | 34 ReliableQuicStream(QuicStreamId id, 78 QuicStreamId id() const { return id_; } function in class:net::ReliableQuicStream
|
/external/chromium_org/ppapi/c/private/ |
ppb_flash_menu.h | 58 int32_t id; member in struct:PP_Flash_MenuItem 81 * |selected_id| will be set to its |id| and the callback called with |PP_OK|.
|
/external/chromium_org/ppapi/proxy/ |
nacl_message_scanner.cc | 168 // If we need to rewrite the message, write the message id first. 171 int id = IPC::SyncMessage::GetMessageId(*msg_); local 172 results->new_msg->WriteInt(id); 187 case MESSAGE_TYPE::ID: { \ 198 case MESSAGE_TYPE::ID: { \ 239 (msg.type() == PpapiMsg_CreateNaClChannel::ID); 243 // We can't always tell from the message ID if rewriting is needed. Therefore, 254 int id = IPC::SyncMessage::GetMessageId(msg); local 255 PendingSyncMsgMap::iterator iter(pending_sync_msgs_.find(id));
|
/external/chromium_org/remoting/host/ |
ipc_desktop_environment.cc | 123 int id = next_id_++; local 125 std::make_pair(id, desktop_session_proxy)).second; 128 VLOG(1) << "Network: registered desktop environment " << id; 131 id, resolution, virtual_terminal)); 145 int id = i->first; local 148 VLOG(1) << "Network: unregistered desktop environment " << id; 149 daemon_channel_->Send(new ChromotingNetworkHostMsg_DisconnectTerminal(id));
|
/external/chromium_org/remoting/host/it2me/ |
it2me_native_messaging_host.cc | 91 // If the client supplies an ID, it will expect it in the response. This 93 const base::Value* id; local 94 if (message->Get("id", &id)) 95 response->Set("id", id->DeepCopy());
|
/external/chromium_org/remoting/jingle_glue/ |
iq_sender.cc | 46 std::string id = signal_strategy_->GetNextId(); local 47 stanza->AddAttr(buzz::QN_ID, id); 51 DCHECK(requests_.find(id) == requests_.end()); 54 requests_[id] = request.get(); 96 const std::string& id = stanza->Attr(buzz::QN_ID); local 97 if (id.empty()) { 98 LOG(WARNING) << "IQ packet missing id " << stanza->Str(); 104 IqRequestMap::iterator it = requests_.find(id); 108 // stanza with an unknown ID we try to match it with an outstanding
|