/external/chromium_org/chrome/third_party/mock4js/examples/ |
Publisher.js | 2 * Subscriber
4 function Subscriber() {
7 Subscriber.prototype = {
22 var subscriber = this._subscribers[i];
23 subscriber.receive(message);
26 add: function(subscriber) {
27 this._subscribers.push(subscriber);
|
PublisherTest.html | 26 var mockSubscriber = mock(Subscriber);
|
/external/chromium_org/content/public/browser/ |
profiler_controller.h | 34 // Register the subscriber so that it will be called when for example 37 virtual void Register(ProfilerSubscriber* subscriber) = 0; 39 // Unregister the subscriber so that it will not be called when for example 41 // Safe to call even if caller is not the current subscriber. 42 virtual void Unregister(const ProfilerSubscriber* subscriber) = 0;
|
profiler_subscriber.h | 19 // Send number of pending processes to subscriber. |end| is set to true if it 25 // Send |profiler_data| back to subscriber.
|
/external/chromium_org/content/browser/ |
histogram_subscriber.h | 18 // Send number of pending processes to subscriber. |end| is set to true if it 24 // Send |histogram| back to subscriber.
|
histogram_controller.h | 31 // Register the subscriber so that it will be called when for example 34 void Register(HistogramSubscriber* subscriber); 36 // Unregister the subscriber so that it will not be called when for example 38 // Safe to call even if caller is not the current subscriber. 39 void Unregister(const HistogramSubscriber* subscriber);
|
histogram_controller.cc | 57 void HistogramController::Register(HistogramSubscriber* subscriber) { 60 subscriber_ = subscriber; 64 const HistogramSubscriber* subscriber) { 65 DCHECK_EQ(subscriber_, subscriber);
|
profiler_controller_impl.h | 45 virtual void Register(ProfilerSubscriber* subscriber) OVERRIDE; 46 virtual void Unregister(const ProfilerSubscriber* subscriber) OVERRIDE;
|
profiler_controller_impl.cc | 64 void ProfilerControllerImpl::Register(ProfilerSubscriber* subscriber) { 67 subscriber_ = subscriber; 70 void ProfilerControllerImpl::Unregister(const ProfilerSubscriber* subscriber) { 71 DCHECK_EQ(subscriber_, subscriber);
|
/external/wpa_supplicant_8/src/wps/ |
wps_upnp_i.h | 61 * An address of a subscriber (who may have multiple addresses). We are 62 * supposed to send (via TCP) updates to each subscriber, trying each address 63 * for a subscriber until we find one that seems to work. 76 * of one outgoing connection (sending an "event message") per subscriber. We 86 * us and given to the subscriber when the subscription is accepted; 87 * and is then included with each event sent to the subscriber.
|
wps_upnp_event.c | 25 * We make a separate copy for each message for each subscriber. This memory 41 * Event information that we send to each subscriber is remembered in this 249 /* event_send_start -- prepare to send a event message to subscriber 255 * we have to queue them, if we lose them then the subscriber will 383 "subscriber %p", s); 418 wpa_printf(MSG_DEBUG, "WPS UPnP: Queue event %p for subscriber %p "
|
/external/chromium_org/content/browser/renderer_host/ |
gpu_message_filter.cc | 44 subscriber(in_subscriber.Pass()), 45 factory(subscriber.get()) { 50 scoped_ptr<RenderWidgetHostViewFrameSubscriber> subscriber; member in struct:content::GpuMessageFilter::FrameSubscription 117 scoped_ptr<RenderWidgetHostViewFrameSubscriber> subscriber) { 120 new FrameSubscription(route_id, subscriber.Pass())); 275 // Frame subscriber is owned by this object, but it is shared with 279 // deleted frame subscriber, a weak reference is shared.
|
gpu_message_filter.h | 50 scoped_ptr<RenderWidgetHostViewFrameSubscriber> subscriber);
|
/external/smack/src/org/jivesoftware/smack/packet/ |
RosterPacket.java | 287 * The user and subscriber have no interest in each other's presence. 292 * The user is interested in receiving presence updates from the subscriber. 297 * The subscriber is interested in receiving presence updates from the user. 302 * The user and subscriber have a mutual interest in each other's presence. 307 * The user wishes to stop receiving presence updates from the subscriber.
|
/external/smack/src/org/jivesoftware/smackx/pubsub/ |
Subscription.java | 37 * @param subscriptionJid The subscriber JID
48 * @param subscriptionJid The subscriber JID
|
/external/chromium_org/third_party/libphonenumber/src/resources/geocoding/be/ |
375.txt | 22 # being only the first digit of subscriber numbers. A similar expansion was
|
/external/wpa_supplicant_8/src/crypto/ |
milenage.c | 28 * @k: K = 128-bit subscriber key 79 * @k: K = 128-bit subscriber key 164 * @k: K = 128-bit subscriber key 202 * @k: K = 128-bit subscriber key 229 * @k: K = 128-bit subscriber key 259 * @k: K = 128-bit subscriber key
|
/cts/tests/tests/permission/src/android/permission/cts/ |
TelephonyManagerPermissionTest.java | 96 fail("Got subscriber id: " + sid);
|
/docs/source.android.com/src/devices/tech/datausage/ |
iface-overview.jd | 45 subscriber identity (such as IMSI). All network interfaces used to
|
/frameworks/base/telephony/java/com/android/internal/telephony/ |
IPhoneSubInfo.aidl | 20 * Interface used to retrieve various phone-related subscriber information.
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
PhoneSubInfo.java | 82 * Retrieves the unique subscriber ID, e.g., IMSI for GSM phones. 235 pw.println("Phone Subscriber Info:");
|
/external/chromium_org/third_party/libphonenumber/src/phonenumbers/ |
phonenumberutil.h | 203 // number into geographical area code and subscriber number. It works in such 204 // a way that the resultant subscriber number should be diallable, at least on 234 // - subscriber numbers may not be diallable from all devices (notably mobile 244 // significant number into NDC and subscriber number. The NDC of a phone 247 // there is a subscriber number part that follows. An example of how this 445 // which together with subscriber number constitute the national 446 // significant number. It is sometimes okay to dial the subscriber 448 // true if the subscriber-number-only version is passed in. On the other 453 // subscriber-number-only version. [all...] |
/external/nist-sip/java/gov/nist/javax/sip/address/ |
SipUri.java | 383 * provided that the user is a telephone subscriber. 430 * returns true if the user is a telephone subscriber. 432 * gateway, a telephone-subscriber field MAY be used instead 433 * of a user field. The telephone-subscriber field uses the 435 * "telephone-subscriber" that are not either in the set 438 * telephone-subscriber contains a number of characters in 453 * @return true if the user is a telephone subscriber. 644 * Set the telephone subscriber field. 645 * @param tel Telephone subscriber field to set. [all...] |