Searched refs:app_id (Results 1 - 25 of 383) sorted by relevance

1234567891011>>

/external/chromium_org/chrome/browser/ui/ash/launcher/
H A Dchrome_launcher_controller_chromeos.cc8 const std::string& app_id) {
7 LaunchedInNativeDesktop( const std::string& app_id) argument
/external/chromium_org/components/gcm_driver/
H A Ddefault_gcm_app_handler.cc22 const std::string& app_id,
24 DVLOG(1) << "No app handler is found to route message for " << app_id;
27 void DefaultGCMAppHandler::OnMessagesDeleted(const std::string& app_id) { argument
28 DVLOG(1) << "No app handler is found to route deleted message for " << app_id;
32 const std::string& app_id,
35 << app_id;
38 void DefaultGCMAppHandler::OnSendAcknowledged(const std::string& app_id, argument
41 << app_id;
21 OnMessage( const std::string& app_id, const GCMClient::IncomingMessage& message) argument
31 OnSendError( const std::string& app_id, const GCMClient::SendErrorDetails& send_error_details) argument
H A Dgcm_app_handler.cc12 bool GCMAppHandler::CanHandle(const std::string& app_id) const {
H A Dgcm_app_handler.h28 virtual void OnMessage(const std::string& app_id,
32 virtual void OnMessagesDeleted(const std::string& app_id) = 0;
36 const std::string& app_id,
40 virtual void OnSendAcknowledged(const std::string& app_id,
43 // If no app handler has been added with the exact app_id of an incoming
45 // handle the app_id, and the first to return true will receive the event.
46 virtual bool CanHandle(const std::string& app_id) const;
H A Ddefault_gcm_app_handler.h22 virtual void OnMessage(const std::string& app_id,
24 virtual void OnMessagesDeleted(const std::string& app_id) OVERRIDE;
26 const std::string& app_id,
28 virtual void OnSendAcknowledged(const std::string& app_id,
H A Dgcm_driver.cc33 void GCMDriver::Register(const std::string& app_id, argument
36 DCHECK(!app_id.empty());
47 if (IsAsyncOperationPending(app_id)) {
56 register_callbacks_[app_id] = callback;
58 RegisterImpl(app_id, normalized_sender_ids);
61 void GCMDriver::Unregister(const std::string& app_id, argument
63 DCHECK(!app_id.empty());
73 if (IsAsyncOperationPending(app_id)) {
78 unregister_callbacks_[app_id] = callback;
80 UnregisterImpl(app_id);
83 Send(const std::string& app_id, const std::string& receiver_id, const GCMClient::OutgoingMessage& message, const SendCallback& callback) argument
109 RegisterFinished(const std::string& app_id, const std::string& registration_id, GCMClient::Result result) argument
124 UnregisterFinished(const std::string& app_id, GCMClient::Result result) argument
136 SendFinished(const std::string& app_id, const std::string& message_id, GCMClient::Result result) argument
160 AddAppHandler(const std::string& app_id, GCMAppHandler* handler) argument
168 RemoveAppHandler(const std::string& app_id) argument
173 GetAppHandler(const std::string& app_id) argument
188 HasRegisterCallback(const std::string& app_id) argument
[all...]
H A Dfake_gcm_app_handler.cc27 void FakeGCMAppHandler::OnMessage(const std::string& app_id, argument
31 app_id_ = app_id;
37 void FakeGCMAppHandler::OnMessagesDeleted(const std::string& app_id) { argument
40 app_id_ = app_id;
46 const std::string& app_id,
50 app_id_ = app_id;
57 const std::string& app_id,
60 app_id_ = app_id;
45 OnSendError( const std::string& app_id, const GCMClient::SendErrorDetails& send_error_details) argument
56 OnSendAcknowledged( const std::string& app_id, const std::string& message_id) argument
/external/chromium_org/chrome/browser/chromeos/app_mode/
H A Dkiosk_app_manager_observer.h15 virtual void OnKioskAppDataChanged(const std::string& app_id) {} argument
18 virtual void OnKioskAppDataLoadFailure(const std::string& app_id) {} argument
21 virtual void OnKioskExtensionLoadedInCache(const std::string& app_id) {} argument
24 virtual void OnKioskExtensionDownloadFailed(const std::string& app_id) {} argument
29 // Invoked when kiosk app cache is updated for |app_id|.
30 virtual void OnKioskAppCacheUpdated(const std::string& app_id) {} argument
H A Dapp_launch_utils.h14 // Attempts to launch the app given by |app_id| in app mode
18 void LaunchAppOrDie(Profile *profile, const std::string& app_id);
H A Dapp_session_lifetime.h15 void InitAppSession(Profile* profile, const std::string& app_id);
H A Dkiosk_app_data_delegate.h22 virtual void OnKioskAppDataChanged(const std::string& app_id) = 0;
25 virtual void OnKioskAppDataLoadFailure(const std::string& app_id) = 0;
/external/chromium_org/chrome/browser/apps/
H A Dper_app_settings_service.cc14 const std::string& app_id, chrome::HostDesktopType host_desktop) {
15 default_desktops_[app_id] = host_desktop;
19 const std::string& app_id) const {
20 DesktopMap::const_iterator it = default_desktops_.find(app_id);
27 const std::string& app_id) const {
28 return default_desktops_.find(app_id) != default_desktops_.end();
13 SetDesktopLastLaunchedFrom( const std::string& app_id, chrome::HostDesktopType host_desktop) argument
H A Dinstall_chrome_app.h14 void InstallChromeApp(const std::string& app_id);
H A Dper_app_settings_service.h21 // Sets/gets the desktop that |app_id| was last launched from.
23 const std::string& app_id, chrome::HostDesktopType host);
25 const std::string& app_id) const;
26 bool HasDesktopLastLaunchedFrom(const std::string& app_id) const;
H A Dinstall_chrome_app.cc35 GURL GetAppInstallUrl(const std::string& app_id) { argument
36 return GURL(base::StringPrintf(kWebstoreUrlFormat, app_id.c_str()));
44 WebstoreInstallWithPromptAppsOnly(const std::string& app_id, argument
48 app_id,
76 void InstallChromeApp(const std::string& app_id) { argument
77 if (!crx_file::id_util::IdIsValid(app_id))
87 content::OpenURLParams params(GetAppInstallUrl(app_id),
99 app_id, ExtensionRegistry::ENABLED | ExtensionRegistry::BLACKLISTED);
107 app_id, browser->profile(), browser->window()->GetNativeWindow());
/external/chromium_org/chrome/browser/sync_file_system/drive_backend/
H A Ddrive_backend_sync_unittest.cc169 storage::FileSystemURL CreateURL(const std::string& app_id, argument
171 return CreateURL(app_id, base::FilePath(path));
174 storage::FileSystemURL CreateURL(const std::string& app_id, argument
176 GURL origin = extensions::Extension::GetBaseURLFromExtensionId(app_id);
180 bool GetAppRootFolderID(const std::string& app_id, argument
190 app_id,
201 std::string GetFileIDByPath(const std::string& app_id, argument
203 return GetFileIDByPath(app_id, base::FilePath(path));
206 std::string GetFileIDByPath(const std::string& app_id, argument
218 app_id,
230 RegisterApp(const std::string& app_id) argument
264 AddLocalFolder(const std::string& app_id, const base::FilePath::StringType& path) argument
272 AddOrUpdateLocalFile(const std::string& app_id, const base::FilePath::StringType& path, const std::string& content) argument
283 UpdateLocalFile(const std::string& app_id, const base::FilePath::StringType& path, const std::string& content) argument
293 RemoveLocal(const std::string& app_id, const base::FilePath::StringType& path) argument
433 const std::string& app_id = itr->first; local
444 VerifyConsistencyForFolder(const std::string& app_id, const base::FilePath& path, const std::string& folder_id, CannedSyncableFileSystem* file_system) argument
497 VerifyConsistencyForFile(const std::string& app_id, const base::FilePath& path, const std::string& file_id, CannedSyncableFileSystem* file_system) argument
513 CountLocalFile(const std::string& app_id) argument
540 VerifyLocalFile(const std::string& app_id, const base::FilePath::StringType& path, const std::string& content) argument
552 VerifyLocalFolder(const std::string& app_id, const base::FilePath::StringType& path) argument
646 std::string app_id = "example"; local
663 std::string app_id = "example"; local
686 std::string app_id = "example"; local
709 std::string app_id = "example"; local
738 std::string app_id = "example"; local
760 std::string app_id = "example"; local
784 std::string app_id = "example"; local
810 std::string app_id = "example"; local
844 std::string app_id = "example"; local
914 std::string app_id = "example"; local
968 std::string app_id = "example"; local
999 std::string app_id = "example"; local
1044 std::string app_id = "example"; local
1078 std::string app_id = "example"; local
1116 std::string app_id = "example"; local
1158 std::string app_id = "example"; local
1199 std::string app_id = "example"; local
1235 std::string app_id = "example"; local
1271 std::string app_id = "example"; local
1305 std::string app_id = "example"; local
1340 std::string app_id = "example"; local
1382 std::string app_id = "example"; local
1422 std::string app_id = "example"; local
1464 std::string app_id = "example"; local
1503 std::string app_id = "example"; local
1540 std::string app_id = "example"; local
1578 std::string app_id = "example"; local
1619 std::string app_id = "example"; local
1654 std::string app_id = "example"; local
1694 std::string app_id = "example"; local
[all...]
/external/bluetooth/bluedroid/bta/include/
H A Dbta_hl_co.h46 ** Parameters app_id - application ID
53 BTA_API extern BOOLEAN bta_hl_co_get_num_of_mdep(UINT8 app_id, UINT8 *p_num_of_mdep);
61 ** Parameters app_id - application ID
67 BTA_API extern BOOLEAN bta_hl_co_advrtise_source_sdp(UINT8 app_id);
76 ** Parameters app_id - HDP application ID
85 BTA_API extern BOOLEAN bta_hl_co_get_mdep_config(UINT8 app_id,
99 ** Parameters app_id - HDP application ID
105 BTA_API extern BOOLEAN bta_hl_co_get_echo_config(UINT8 app_id,
116 ** Parameters app_id - HDP application ID
123 BTA_API extern void bta_hl_co_save_mdl(UINT8 app_id, UINT
[all...]
H A Dbta_hh_co.h51 UINT8 ctry_code, BD_ADDR peer_addr, UINT8 app_id);
65 UINT16 attr_mask, UINT8 app_id);
77 BTA_API extern void bta_hh_co_close(UINT8 dev_handle, UINT8 app_id);
91 ** app_id - application id
98 UINT8 app_id);
110 ** app_id - application id
117 UINT8 app_id);
130 BTA_API extern void bta_hh_le_co_reset_rpt_cache (BD_ADDR remote_bda, UINT8 app_id);
H A Dbta_pan_co.h81 BTA_API extern void bta_pan_co_open(UINT16 handle, UINT8 app_id, tBTA_PAN_ROLE local_role, tBTA_PAN_ROLE peer_role, BD_ADDR peer_addr);
94 BTA_API extern void bta_pan_co_close(UINT16 handle, UINT8 app_id);
109 BTA_API extern void bta_pan_co_tx_path(UINT16 handle, UINT8 app_id);
124 BTA_API extern void bta_pan_co_rx_path(UINT16 handle, UINT8 app_id);
139 BTA_API extern void bta_pan_co_tx_write(UINT16 handle, UINT8 app_id, BD_ADDR src, BD_ADDR dst, UINT16 protocol, UINT8 *p_data,
155 BTA_API extern void bta_pan_co_tx_writebuf(UINT16 handle, UINT8 app_id, BD_ADDR src, BD_ADDR dst, UINT16 protocol, BT_HDR *p_buf,
173 BTA_API extern void bta_pan_co_rx_flow(UINT16 handle, UINT8 app_id, BOOLEAN enable);
/external/chromium_org/chrome/browser/services/gcm/
H A Dfake_gcm_profile_service.cc25 void OnRegisterFinished(const std::string& app_id,
28 void OnUnregisterFinished(const std::string& app_id,
30 void OnSendFinished(const std::string& app_id,
37 const std::string& app_id,
39 virtual void UnregisterImpl(const std::string& app_id) OVERRIDE;
40 virtual void SendImpl(const std::string& app_id,
58 const std::string& app_id,
64 app_id,
68 void CustomFakeGCMDriver::UnregisterImpl(const std::string& app_id) { argument
73 app_id));
57 RegisterImpl( const std::string& app_id, const std::vector<std::string>& sender_ids) argument
76 SendImpl(const std::string& app_id, const std::string& receiver_id, const GCMClient::OutgoingMessage& message) argument
88 OnRegisterFinished( const std::string& app_id, const std::string& registration_id, GCMClient::Result result) argument
94 OnUnregisterFinished(const std::string& app_id, GCMClient::Result result) argument
98 OnSendFinished(const std::string& app_id, const std::string& message_id, GCMClient::Result result) argument
119 RegisterFinished( const std::string& app_id, const std::vector<std::string>& sender_ids) argument
134 UnregisterFinished(const std::string& app_id) argument
146 SendFinished( const std::string& app_id, const std::string& receiver_id, const GCMClient::OutgoingMessage& message) argument
[all...]
/external/chromium_org/ash/shelf/
H A Dshelf_delegate.h29 virtual ShelfID GetShelfIDForAppID(const std::string& app_id) = 0;
34 // Pins an app with |app_id| to shelf. A running instance will get pinned.
37 virtual void PinAppWithID(const std::string& app_id) = 0;
40 virtual bool IsAppPinned(const std::string& app_id) = 0;
46 // Unpins app item with |app_id|.
47 virtual void UnpinAppWithID(const std::string& app_id) = 0;
/external/chromium_org/ash/shell/
H A Dshelf_delegate_impl.cc29 ShelfID ShelfDelegateImpl::GetShelfIDForAppID(const std::string& app_id) { argument
37 void ShelfDelegateImpl::PinAppWithID(const std::string& app_id) { argument
40 bool ShelfDelegateImpl::IsAppPinned(const std::string& app_id) { argument
48 void ShelfDelegateImpl::UnpinAppWithID(const std::string& app_id) { argument
/external/chromium_org/google_apis/gcm/monitoring/
H A Dfake_gcm_stats_recorder.cc46 const std::string& app_id,
51 const std::string& app_id,
57 const std::string& app_id,
63 const std::string& app_id) {
67 const std::string& app_id,
72 const std::string& app_id,
77 const std::string& app_id,
85 const std::string& app_id,
92 const std::string& app_id,
101 const std::string& app_id,
45 RecordRegistrationSent( const std::string& app_id, const std::string& sender_ids) argument
50 RecordRegistrationResponse( const std::string& app_id, const std::vector<std::string>& sender_ids, RegistrationRequest::Status status) argument
56 RecordRegistrationRetryRequested( const std::string& app_id, const std::vector<std::string>& sender_ids, int retries_left) argument
62 RecordUnregistrationSent( const std::string& app_id) argument
66 RecordUnregistrationResponse( const std::string& app_id, UnregistrationRequest::Status status) argument
71 RecordUnregistrationRetryDelayed( const std::string& app_id, int64 delay_msec) argument
76 RecordDataMessageReceived( const std::string& app_id, const std::string& from, int message_byte_size, bool to_registered_app, ReceivedMessageType message_type) argument
84 RecordDataSentToWire( const std::string& app_id, const std::string& receiver_id, const std::string& message_id, int queued) argument
91 RecordNotifySendStatus( const std::string& app_id, const std::string& receiver_id, const std::string& message_id, gcm::MCSClient::MessageSendStatus status, int byte_size, int ttl) argument
100 RecordIncomingSendError( const std::string& app_id, const std::string& receiver_id, const std::string& message_id) argument
[all...]
H A Dgcm_stats_recorder.h75 virtual void RecordRegistrationSent(const std::string& app_id,
80 const std::string& app_id,
87 const std::string& app_id,
93 virtual void RecordUnregistrationSent(const std::string& app_id) = 0;
97 const std::string& app_id,
102 virtual void RecordUnregistrationRetryDelayed(const std::string& app_id,
109 virtual void RecordDataMessageReceived(const std::string& app_id,
116 virtual void RecordDataSentToWire(const std::string& app_id,
121 virtual void RecordNotifySendStatus(const std::string& app_id,
128 virtual void RecordIncomingSendError(const std::string& app_id,
[all...]
/external/bluetooth/bluedroid/bta/sys/
H A Dbta_sys_conn.c201 void bta_sys_conn_open(UINT8 id, UINT8 app_id, BD_ADDR peer_addr) argument
206 bta_sys_cb.prm_cb(BTA_SYS_CONN_OPEN, id, app_id, peer_addr);
213 bta_sys_cb.ppm_cb(BTA_SYS_CONN_OPEN, id, app_id, peer_addr);
231 void bta_sys_conn_close(UINT8 id, UINT8 app_id, BD_ADDR peer_addr) argument
236 bta_sys_cb.prm_cb(BTA_SYS_CONN_CLOSE, id, app_id, peer_addr);
243 bta_sys_cb.ppm_cb(BTA_SYS_CONN_CLOSE, id, app_id, peer_addr);
260 void bta_sys_app_open(UINT8 id, UINT8 app_id, BD_ADDR peer_addr) argument
264 bta_sys_cb.ppm_cb(BTA_SYS_APP_OPEN, id, app_id, peer_addr);
280 void bta_sys_app_close(UINT8 id, UINT8 app_id, BD_ADDR peer_addr) argument
284 bta_sys_cb.ppm_cb(BTA_SYS_APP_CLOSE, id, app_id, peer_add
299 bta_sys_sco_open(UINT8 id, UINT8 app_id, BD_ADDR peer_addr) argument
324 bta_sys_sco_close(UINT8 id, UINT8 app_id, BD_ADDR peer_addr) argument
350 bta_sys_sco_use(UINT8 id, UINT8 app_id, BD_ADDR peer_addr) argument
372 bta_sys_sco_unuse(UINT8 id, UINT8 app_id, BD_ADDR peer_addr) argument
394 bta_sys_chg_ssr_config(UINT8 id, UINT8 app_id, UINT16 max_latency, UINT16 min_tout) argument
484 bta_sys_idle(UINT8 id, UINT8 app_id, BD_ADDR peer_addr) argument
511 bta_sys_busy(UINT8 id, UINT8 app_id, BD_ADDR peer_addr) argument
[all...]

Completed in 3936 milliseconds

1234567891011>>