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

1 2

  /packages/apps/Launcher2/src/com/android/launcher2/
LauncherAppWidgetHost.java 33 public LauncherAppWidgetHost(Launcher launcher, int hostId) {
34 super(launcher, hostId);
  /packages/apps/Launcher3/src/com/android/launcher3/
LauncherAppWidgetHost.java 33 public LauncherAppWidgetHost(Launcher launcher, int hostId) {
34 super(launcher, hostId);
  /frameworks/base/core/java/com/android/internal/appwidget/
IAppWidgetService.aidl 33 int[] startListening(IAppWidgetHost host, String packageName, int hostId,
35 void stopListening(int hostId, int userId);
36 int allocateAppWidgetId(String packageName, int hostId, int userId);
38 void deleteHost(int hostId, int userId);
41 int[] getAppWidgetIdsForHost(int hostId, int userId);
  /external/chromium_org/remoting/webapp/
host_settings.js 22 * @param {string} hostId The host identifer for which to load options.
28 remoting.HostSettings.load = function(hostId, callback) {
37 remoting.HostSettings.loadInternal_(hostId, onDone);
44 * @param {string} hostId The host identifer for which to save options.
50 remoting.HostSettings.save = function(hostId, options, opt_callback) {
60 allHosts[hostId] = requestedHost;
65 remoting.HostSettings.loadInternal_(hostId, onDone);
71 * @param {string} hostId The host identifer for which to load options.
76 remoting.HostSettings.loadInternal_ = function(hostId, callback) {
88 } else if (/** @type {Object} */ (result).hasOwnProperty(hostId) &
    [all...]
host_list.js 131 * @param {string} hostId The unique id of the host.
134 remoting.HostList.prototype.getHostForId = function(hostId) {
136 if (this.hosts_[i].hostId == hostId) {
152 return this.hosts_[i].hostId;
278 if (host.hostName && host.hostId && host.status && host.publicKey &&
279 (!this.localHost_ || host.hostId != this.localHost_.hostId)) {
325 remoting.HostList.unregisterHostById(hostTableEntry.host.hostId);
336 if (this.hosts_[i].hostId == hostTableEntry.host.hostId)
    [all...]
host_controller.js 237 hostId: newHostId,
322 /** @param {string?} hostId The host id of the local host. */
323 function unregisterHost(hostId) {
324 if (hostId) {
325 remoting.HostList.unregisterHostById(hostId);
394 var hostId = config['host_id'];
395 that.hostDispatcher_.getPinHash(hostId, newPin, updateDaemonConfigWithHash,
426 var hostId = null;
428 hostId = /** @type {string} */ config['host_id'];
430 onDone(hostId);
    [all...]
remoting.js 119 var hostId = urlParams['hostId'];
120 remoting.connectMe2Me(hostId);
203 * @param {string?} hostId Host id.
205 var onHostId = function(hostId) {
206 remoting.hostController.getLocalHostState(onHostState.bind(null, hostId));
210 * @param {string?} hostId Host id.
213 var onHostState = function(hostId, state) {
214 remoting.hostList.setLocalHostStateAndId(state, hostId);
host.js 24 this.hostId = '';
host_plugin_proto.js 33 /** @param {string} hostId The host ID.
38 remoting.HostPlugin.prototype.getPinHash = function(hostId, pin, callback) {};
client_screen.js 203 * @param {string} hostId The unique id of the host.
206 remoting.connectMe2Me = function(hostId) {
207 var host = remoting.hostList.getHostForId(hostId);
339 remoting.HostSettings.load(host.hostId, connectMe2MeHostSettingsRetrieved);
host_dispatcher.js 129 * @param {string} hostId
136 function(hostId, pin, onDone, onError) {
140 this.getPinHash.bind(this, hostId, pin, onDone, onError));
143 this.nativeMessagingHost_.getPinHash(hostId, pin, onDone, onError);
147 this.npapiHost_.getPinHash(hostId, pin, onDone);
session_connector.js 180 host.hostId, host.jabberId, host.publicKey, host.hostName,
200 * @param {string} hostId ID of the Me2Me host.
220 function(hostId, hostJid, hostPublicKey, hostDisplayName,
227 this.hostId_ = hostId;
468 host.hostId, host.jabberId, host.publicKey, host.hostName,
host_native_messaging.js 407 * @param {string} hostId The host ID.
415 function(hostId, pin, onDone, onError) {
418 hostId: hostId,
host_table_entry.js 75 hostNameCell.id = 'host_' + this.host.hostId;
178 var encodedHostId = encodeURIComponent(this.host.hostId)
  /frameworks/base/services/java/com/android/server/
AppWidgetService.java 123 public int allocateAppWidgetId(String packageName, int hostId, int userId)
125 return getImplForUser(userId).allocateAppWidgetId(packageName, hostId);
129 public int[] getAppWidgetIdsForHost(int hostId, int userId) throws RemoteException {
130 return getImplForUser(userId).getAppWidgetIdsForHost(hostId);
139 public void deleteHost(int hostId, int userId) throws RemoteException {
140 getImplForUser(userId).deleteHost(hostId);
181 public int[] startListening(IAppWidgetHost host, String packageName, int hostId,
183 return getImplForUser(userId).startListening(host, packageName, hostId, updatedViews);
291 public void stopListening(int hostId, int userId) throws RemoteException {
292 getImplForUser(userId).stopListening(hostId);
    [all...]
AppWidgetServiceImpl.java 115 int hostId;
360 pw.print(" ["); pw.print(index); pw.print("] hostId=");
361 pw.print(host.hostId); pw.print(' ');
372 pw.print(" hostId=");
373 pw.print(id.host.hostId); pw.print(' ');
445 public int allocateAppWidgetId(String packageName, int hostId) {
454 Host host = lookupOrAddHostLocked(callingUid, packageName, hostId);
464 if (DBG) log("Allocating AppWidgetId for " + packageName + " host=" + hostId
484 public void deleteHost(int hostId) {
491 Host host = lookupHostLocked(callingUid, hostId);
    [all...]
  /frameworks/base/core/java/android/appwidget/
AppWidgetHost.java 123 public AppWidgetHost(Context context, int hostId) {
124 this(context, hostId, null, context.getMainLooper());
130 public AppWidgetHost(Context context, int hostId, OnClickHandler handler, Looper looper) {
132 mHostId = hostId;
218 public static int allocateAppWidgetIdForPackage(int hostId, int userId, String packageName) {
224 return sService.allocateAppWidgetId(packageName, hostId, userId);
  /external/chromium_org/remoting/android/java/src/org/chromium/chromoting/jni/
JniInterface.java 111 String hostJid, String hostId, String hostPubkey, Runnable successCallback) {
116 nativeConnect(username, authToken, hostJid, hostId, hostPubkey,
117 prefs.getString(hostId + "_id", ""), prefs.getString(hostId + "_secret", ""));
123 String hostId, String hostPubkey, String pairId, String pairSecret);
  /external/chromium_org/remoting/host/
host_change_notification_listener_unittest.cc 69 std::string hostId,
77 host_changed->AddAttr(QName(kChromotingXmlNamespace, "hostid"), hostId);
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
DOMAgent.js 1054 * @param {!DOMAgent.NodeId} hostId
1057 _shadowRootPushed: function(hostId, root)
1059 var host = this._idToDOMNode[hostId];
1070 * @param {!DOMAgent.NodeId} hostId
1073 _shadowRootPopped: function(hostId, rootId)
1075 var host = this._idToDOMNode[hostId];
    [all...]
  /external/chromium_org/remoting/client/jni/
chromoting_jni_runtime.cc 74 jstring hostId,
82 ConvertJavaStringToUTF8(env, hostId).c_str(),
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorDOMAgent.cpp     [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.p2.metadata.generator_1.0.200.v20100503a.jar 
org.eclipse.equinox.registry_3.5.0.v20100503.jar 
org.eclipse.equinox.p2.publisher_1.1.2.v20100824-2220.jar 

Completed in 912 milliseconds

1 2