HomeSort by relevance Sort by last modified time
    Searched refs:app_id (Results 26 - 50 of 385) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/chromium_org/google_apis/gcm/monitoring/
fake_gcm_stats_recorder.h 29 virtual void RecordRegistrationSent(const std::string& app_id,
32 const std::string& app_id,
36 const std::string& app_id,
39 virtual void RecordUnregistrationSent(const std::string& app_id) OVERRIDE;
41 const std::string& app_id,
43 virtual void RecordUnregistrationRetryDelayed(const std::string& app_id,
46 const std::string& app_id,
51 virtual void RecordDataSentToWire(const std::string& app_id,
55 virtual void RecordNotifySendStatus(const std::string& app_id,
61 virtual void RecordIncomingSendError(const std::string& app_id,
    [all...]
gcm_stats_recorder.h 75 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/include/
bta_pan_co.h 81 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);
bta_fs_co.h 110 #define BTA_FS_INVALID_APP_ID (0xFF) /* this app_id is reserved */
154 UINT8 app_id; member in struct:__anon5381
191 ** app_id - application ID specified in the enable functions.
203 UINT16 evt, UINT8 app_id);
214 ** app_id - application ID specified in the enable functions.
222 tBTA_FS_CO_SESS_ST new_st, char *p_path, UINT8 *p_info, UINT8 app_id);
233 ** app_id - application ID specified in the enable functions.
240 BTA_API extern void bta_fs_co_resume_op(UINT32 offset, UINT16 evt, UINT8 app_id);
253 ** app_id - application ID specified in the enable functions.
261 UINT32 *p_timeout, UINT32 *p_offset, UINT8 info, UINT8 app_id);
    [all...]
  /external/bluetooth/bluedroid/bta/sys/
bta_sys_conn.c 201 void bta_sys_conn_open(UINT8 id, UINT8 app_id, BD_ADDR peer_addr)
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)
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)
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)
284 bta_sys_cb.ppm_cb(BTA_SYS_APP_CLOSE, id, app_id, peer_addr)
    [all...]
  /external/chromium_org/components/gcm_driver/
gcm_driver_android.h 26 jstring app_id,
31 jstring app_id,
35 jstring app_id,
41 jstring app_id);
63 const std::string& app_id,
65 virtual void UnregisterImpl(const std::string& app_id) OVERRIDE;
66 virtual void SendImpl(const std::string& app_id,
fake_gcm_app_handler.h 31 const std::string& app_id() const { return app_id_; } function in class:gcm::FakeGCMAppHandler
42 virtual void OnMessage(const std::string& app_id,
44 virtual void OnMessagesDeleted(const std::string& app_id) OVERRIDE;
46 const std::string& app_id,
gcm_app_handler.cc 18 bool GCMAppHandler::CanHandle(const std::string& app_id) const {
gcm_driver_desktop.h 55 virtual void AddAppHandler(const std::string& app_id,
57 virtual void RemoveAppHandler(const std::string& app_id) OVERRIDE;
74 const std::string& app_id,
76 virtual void UnregisterImpl(const std::string& app_id) OVERRIDE;
77 virtual void SendImpl(const std::string& app_id,
91 void DoRegister(const std::string& app_id,
93 void DoUnregister(const std::string& app_id);
94 void DoSend(const std::string& app_id,
99 void MessageReceived(const std::string& app_id,
101 void MessagesDeleted(const std::string& app_id);
    [all...]
fake_gcm_app_handler.cc 27 void FakeGCMAppHandler::OnMessage(const std::string& app_id,
31 app_id_ = app_id;
37 void FakeGCMAppHandler::OnMessagesDeleted(const std::string& app_id) {
40 app_id_ = app_id;
46 const std::string& app_id,
50 app_id_ = app_id;
gcm_driver_android.cc 40 std::string app_id = ConvertJavaStringToUTF8(env, j_app_id); local
45 RegisterFinished(app_id, registration_id, result);
52 std::string app_id = ConvertJavaStringToUTF8(env, j_app_id); local
56 UnregisterFinished(app_id, result);
65 std::string app_id = ConvertJavaStringToUTF8(env, j_app_id); local
79 GetAppHandler(app_id)->OnMessage(app_id, message);
85 std::string app_id = ConvertJavaStringToUTF8(env, j_app_id); local
87 GetAppHandler(app_id)->OnMessagesDeleted(app_id);
    [all...]
fake_gcm_client.cc 72 void FakeGCMClient::Register(const std::string& app_id,
81 app_id,
85 void FakeGCMClient::Unregister(const std::string& app_id) {
92 app_id));
95 void FakeGCMClient::Send(const std::string& app_id,
104 app_id,
126 void FakeGCMClient::ReceiveMessage(const std::string& app_id,
134 app_id,
138 void FakeGCMClient::DeleteMessages(const std::string& app_id) {
145 app_id));
    [all...]
gcm_driver_desktop.cc 96 virtual void OnRegisterFinished(const std::string& app_id,
99 virtual void OnUnregisterFinished(const std::string& app_id,
101 virtual void OnSendFinished(const std::string& app_id,
105 const std::string& app_id,
107 virtual void OnMessagesDeleted(const std::string& app_id) OVERRIDE;
109 const std::string& app_id,
126 void Register(const std::string& app_id,
128 void Unregister(const std::string& app_id);
129 void Send(const std::string& app_id,
180 const std::string& app_id,
    [all...]
  /external/chromium_org/chrome/browser/ui/ash/launcher/
chrome_launcher_controller_win.cc 20 const std::string& app_id) {
27 ->GetCurrentAppWindowForApp(app_id);
46 app_id.c_str());
chrome_launcher_app_menu_item_v2app.cc 12 const std::string& app_id,
18 app_id_(app_id),
  /external/chromium_org/ash/shell/
shelf_delegate_impl.h 30 virtual ShelfID GetShelfIDForAppID(const std::string& app_id) OVERRIDE;
32 virtual void PinAppWithID(const std::string& app_id) OVERRIDE;
33 virtual bool IsAppPinned(const std::string& app_id) OVERRIDE;
35 virtual void UnpinAppWithID(const std::string& app_id) OVERRIDE;
  /external/chromium_org/chrome/browser/chromeos/app_mode/
app_launch_utils.cc 19 AppLaunchManager(Profile* profile, const std::string& app_id)
22 app_id,
65 void LaunchAppOrDie(Profile* profile, const std::string& app_id) {
67 (new AppLaunchManager(profile, app_id))->Start();
kiosk_diagnosis_runner.h 23 // Run diagnostic jobs for |app_id|.
24 static void Run(Profile* profile, const std::string& app_id);
33 void Start(const std::string& app_id);
  /external/chromium_org/chrome/browser/ui/startup/
startup_tab.h 21 // If true, the tab corresponds to an app an |app_id| gives the id of the
29 std::string app_id; member in struct:StartupTab
  /external/chromium_org/chrome/browser/extensions/
extension_gcm_app_handler.cc 74 const std::string& app_id,
77 js_event_router_->OnMessage(app_id, message);
81 void ExtensionGCMAppHandler::OnMessagesDeleted(const std::string& app_id) {
83 js_event_router_->OnMessagesDeleted(app_id);
88 const std::string& app_id,
91 js_event_router_->OnSendError(app_id, send_error_details);
158 const std::string& app_id, gcm::GCMClient::Result result) {
162 void ExtensionGCMAppHandler::AddAppHandler(const std::string& app_id) {
163 GetGCMDriver()->AddAppHandler(app_id, this);
166 void ExtensionGCMAppHandler::RemoveAppHandler(const std::string& app_id) {
    [all...]
extension_gcm_app_handler.h 51 const std::string& app_id,
53 virtual void OnMessagesDeleted(const std::string& app_id) OVERRIDE;
55 const std::string& app_id,
60 virtual void OnUnregisterCompleted(const std::string& app_id,
62 virtual void AddAppHandler(const std::string& app_id);
63 virtual void RemoveAppHandler(const std::string& app_id);
  /external/chromium_org/chrome/browser/apps/
ephemeral_app_throttle.cc 29 const std::string& app_id,
46 const Extension* extension = service->GetInstalledExtension(app_id);
55 EphemeralAppLauncher::CreateForLink(app_id, source);
92 std::string app_id(request->url().ExtractFileName());
93 if (!Extension::IdIsValid(app_id))
98 base::Bind(&LaunchEphemeralApp, app_id));
  /external/chromium_org/chrome/browser/services/gcm/
push_messaging_service_impl.h 39 virtual void OnMessage(const std::string& app_id,
41 virtual void OnMessagesDeleted(const std::string& app_id) OVERRIDE;
43 const std::string& app_id,
45 virtual bool CanHandle(const std::string& app_id) const OVERRIDE;
49 const std::string& app_id,
55 const std::string& app_id,
push_messaging_service_impl.cc 77 bool PushMessagingServiceImpl::CanHandle(const std::string& app_id) const {
78 // TODO(mvanouwerkerk): Finalize and centralize format of Push API app_id.
79 return StartsWithASCII(app_id, kAppIdPrefix, true);
87 const std::string& app_id,
106 // corresponding to app_id (and remove ALLOW_UNUSED above).
110 // Service Worker corresponding to app_id.
116 void PushMessagingServiceImpl::OnMessagesDeleted(const std::string& app_id) {
118 // corresponding to app_id.
122 const std::string& app_id,
128 const std::string& app_id,
    [all...]
  /external/bluetooth/bluedroid/stack/include/
goep_fs.h 151 UINT16 event_id, UINT8 app_id);
163 typedef void (tGOEP_CLOSE_CBACK) (tGOEP_FD fd, UINT8 app_id);
183 UINT16 event_id, UINT8 app_id);
201 UINT16 event_id, UINT8 app_id);
214 typedef void (tGOEP_SEEK_CBACK) (tGOEP_FD fd, INT32 offset, INT16 origin, UINT8 app_id);
243 UINT8 app_id);
259 BOOLEAN *p_is_dir, UINT8 app_id);
276 typedef tGOEP_STATUS (tGOEP_MKDIR_CBACK) (const char *p_path, UINT8 app_id);
294 typedef tGOEP_STATUS (tGOEP_RMDIR_CBACK) (const char *p_path, UINT8 app_id);
311 typedef tGOEP_STATUS (tGOEP_UNLINK_CBACK) (const char *p_path, UINT8 app_id);
    [all...]

Completed in 191 milliseconds

12 3 4 5 6 7 8 91011>>