/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
SmsBroadcastUndelivered.java | 161 InboundSmsTracker tracker; local 163 tracker = TelephonyComponentFactory.getInstance().makeInboundSmsTracker(cursor, 170 if (tracker.getMessageCount() == 1) { 172 broadcastSms(tracker); 174 SmsReferenceKey reference = new SmsReferenceKey(tracker); 178 if (tracker.getTimestamp() < 185 if (newCount == tracker.getMessageCount()) { 186 // looks like we've got all the pieces; send a single tracker 189 broadcastSms(tracker); 222 * Send tracker to appropriate (3GPP or 3GPP2) inbound SMS handler for broadcast [all...] |
ImsSMSDispatcher.java | 185 protected void sendSms(SmsTracker tracker) { 192 protected void sendSmsByPstn(SmsTracker tracker) { 253 public void sendRetrySms(SmsTracker tracker) { 254 String oldFormat = tracker.mFormat; 266 mCdmaDispatcher.sendSms(tracker); 270 mGsmDispatcher.sendSms(tracker); 276 HashMap map = tracker.getData(); 286 tracker.onFailed(mContext, RESULT_ERROR_GENERIC_FAILURE, 0/*errorCode*/); 293 // figure out from tracker if this was sendText/Data 301 scAddr, destAddr, text, (tracker.mDeliveryIntent != null), null) [all...] |
SMSDispatcher.java | 296 SmsTracker tracker = (SmsTracker) msg.obj; local 297 if (tracker.isMultipart()) { 298 sendMultipartSms(tracker); 301 tracker.mExpectMore = true; 303 tracker.mExpectMore = false; 305 sendSms(tracker); 313 SmsTracker tracker = (SmsTracker) msg.obj; local 314 tracker.onFailed(mContext, RESULT_ERROR_LIMIT_EXCEEDED, 0/*errorCode*/); 336 protected SmsSender(SmsTracker tracker) { 337 mTracker = tracker; 622 SmsTracker tracker = (SmsTracker) ar.userObj; local [all...] |
/packages/apps/UnifiedEmail/src/com/android/mail/analytics/ |
Analytics.java | 24 * Mail wrapper for analytics libraries. Libraries should implement {@link Tracker}, and app 25 * configurations that want to enable analytics should call {@link #setTracker(Tracker)} as soon 29 * ever) set its own tracker instance, method calls on that tracker will be stubbed out. 84 private static Tracker sInstance; 89 public static Tracker getInstance() { 98 public static void setTracker(Tracker t) { 108 private static final class StubTracker implements Tracker {
|
/external/apache-http/src/org/apache/http/impl/conn/ |
AbstractPoolEntry.java | 92 protected volatile RouteTracker tracker; field in class:AbstractPoolEntry 111 this.tracker = null; 154 if ((this.tracker != null) && this.tracker.isConnected()) { 166 this.tracker = new RouteTracker(route); 175 RouteTracker localTracker = tracker; // capture volatile 177 // If this tracker was reset while connecting, 212 if ((this.tracker == null) || !this.tracker.isConnected()) { 215 if (this.tracker.isTunnelled()) [all...] |
/external/mesa3d/docs/ |
openvg.html | 5 <title>OpenVG State Tracker</title> 10 <h1>OpenVG State Tracker</h1> 13 The current version of the OpenVG state tracker implements OpenVG 1.1. 21 The OpenVG state tracker depends on the Gallium architecture and a working EGL implementation.
|
/external/mesa3d/src/gallium/state_trackers/d3d1x/docs/ |
source_layout.txt | 1 Source layout and architecture of the Gallium D3D state tracker 5 gd3dapi contains the Gallium COM state tracker API and extensions to the DXGI and Direct3D APIs, both for internal and external usage 15 d3d1xstutil contains helper code shared among all the modules in the state tracker
|
/packages/apps/UnifiedEmail/src/org/apache/commons/io/ |
FileCleaningTracker.java | 45 * Queue of <code>Tracker</code> instances being watched. 47 ReferenceQueue<Object> /* Tracker */ q = new ReferenceQueue<Object>(); 49 * Collection of <code>Tracker</code> instances in existence. 51 final Collection<Tracker> /* Tracker */ trackers = new Vector<Tracker>(); // synchronized 123 * Adds a tracker to the list of trackers. 138 trackers.add(new Tracker(path, deleteStrategy, marker, q)); 203 Tracker tracker = null local [all...] |
/external/llvm/include/llvm/IR/ |
ModuleSlotTracker.h | 22 /// Manage lifetime of a slot tracker for printing IR. 31 /// Storage for a slot tracker. 43 /// Construct a slot tracker from a module. 45 /// If \a M is \c nullptr, uses a null slot tracker. Otherwise, initializes 46 /// a slot tracker, and initializes all metadata slots. \c
|
/frameworks/base/tests/LocationTracker/src/com/android/locationtracker/data/ |
TrackerListHelper.java | 28 * Used to bind Tracker data to a list view UI 43 * Helper method for binding the list activities UI to the tracker data 44 * Tracker data will be sorted in most-recent first order 45 * Will enable automatic UI changes as tracker data changes 52 // Used to map tracker entries from the database to views
|
/system/bt/osi/include/ |
allocation_tracker.h | 28 // Initialize the allocation tracker. If you do not call this function, 29 // the allocation tracker functions do nothing but are still safe to call. 32 // Reset the allocation tracker. Don't call this in the normal course of 41 // Notify the tracker of a new allocation belonging to |allocator_id|. 49 // Notify the tracker of an allocation that is being freed. |ptr| must be a
|
/external/mesa3d/src/gallium/state_trackers/xa/ |
README | 30 The XA state tracker is intended as a versioned interface to gallium for 32 composite / video work for the Xorg state tracker. 34 The motivation behind this state tracker is that the Xorg state tracker has 42 Since Gallium3D is not versioned, the Xorg state tracker needs to be compiled 46 Therefore the xa state tracker is intended to supply the following 59 should investigate sharing the loadig mechanism with the EGL state tracker.
|
/external/opencv3/samples/python2/ |
feature_homography.py | 40 self.tracker = PlaneTracker() 46 self.tracker.clear() 47 self.tracker.add_target(self.frame, rect) 61 if len(self.tracker.targets) > 0: 62 target = self.tracker.targets[0] 69 tracked = self.tracker.track(self.frame) 75 draw_keypoints(vis, self.tracker.frame_points)
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/ |
DrawingProxy.java | 44 * @param tracker the {@link PointerTracker} that detects this long pressing. 49 public MoreKeysPanel showMoreKeysKeyboard(@Nonnull Key key, @Nonnull PointerTracker tracker); 62 * @param tracker the {@link PointerTracker} that is currently doing the sliding-key input. 65 public void showSlidingKeyInputPreview(@Nullable PointerTracker tracker); 69 * @param tracker the {@link PointerTracker} whose gesture trail will be shown. 71 * with this <code>tracker</code>'s trail. 73 public void showGestureTrail(@Nonnull PointerTracker tracker, boolean showsFloatingPreviewText);
|
/external/mesa3d/src/gallium/include/state_tracker/ |
st_api.h | 34 * \file API for communication between state trackers and state tracker 37 * While both are state tackers, we use the term state tracker for rendering 38 * APIs such as OpenGL or OpenVG, and state tracker manager for window system 42 * tracker managers. 46 * The supported rendering API of a state tracker. 73 * Optional API/state tracker features. 142 * Enumerations of state tracker context resources. 167 * The dri state tracker on old libGL's doesn't do the right thing 170 * For the mesa state tracker that means that it needs to invalidate 276 * The framebuffer is implemented by the state tracker manager an [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/generators/ |
VersionTrackerTask.java | 46 VersionTrackerTask tracker = local 48 tracker.parse(getFeaturePath(),new FeatureHandler()); 49 tracker.parse(new PluginHandler()); 50 tracker.writeProperties(getOutputFilePath(), true); 55 VersionTrackerTask Tracker = 57 Tracker.parse(args[0],Tracker.new FeatureHandler()); 58 Tracker.parse(Tracker.new PluginHandler()); 59 Tracker.writeProperties(args[2], true) [all...] |
/frameworks/base/services/core/java/com/android/server/ |
LockSettingsStrongAuth.java | 56 private void handleAddStrongAuthTracker(IStrongAuthTracker tracker) { 58 if (mStrongAuthTrackers.get(i).asBinder() == tracker.asBinder()) { 62 mStrongAuthTrackers.add(tracker); 68 tracker.onStrongAuthRequiredChanged(value, key); 75 private void handleRemoveStrongAuthTracker(IStrongAuthTracker tracker) { 77 if (mStrongAuthTrackers.get(i).asBinder() == tracker.asBinder()) { 128 public void registerStrongAuthTracker(IStrongAuthTracker tracker) { 129 mHandler.obtainMessage(MSG_REGISTER_TRACKER, tracker).sendToTarget(); 132 public void unregisterStrongAuthTracker(IStrongAuthTracker tracker) { 133 mHandler.obtainMessage(MSG_UNREGISTER_TRACKER, tracker).sendToTarget() [all...] |
/packages/apps/Messaging/tests/src/com/android/messaging/datamodel/action/ |
ActionServiceTest.java | 62 final ResultTracker tracker = (ResultTracker) data; local 63 tracker.completionResult = result; 64 synchronized(tracker) { 65 tracker.notifyAll(); 77 final ResultTracker tracker = (ResultTracker) data; local 78 tracker.completionResult = result; 79 synchronized(tracker) { 80 tracker.notifyAll(); 89 final ResultTracker tracker = new ResultTracker(); local 91 final TestChatActionMonitor monitor = new TestChatActionMonitor(null, tracker, this, this) [all...] |
/external/chromium-trace/catapult/third_party/apiclient/ |
README.chromium | 8 This is used in the perf dashboard for communicating with the issue tracker,
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
org.eclipse.ecf.provider.filetransfer.ssl_1.0.0.v20100529-0735.jar | |
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx_mem/include/ |
vpx_mem_tracker.h | 52 Initializes the memory tracker interface. Should be called before any 53 other calls to the memory tracker. 59 Deinitializes the memory tracker interface 71 to the memory tracker allocation table 83 Removes the specified address from the memory tracker's allocation 94 addr - address to be found in the memory tracker's 105 tracker allocation table 123 Sets the logging type for the memory tracker. 140 Sets a logging function to be used by the memory tracker.
|
/prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/ |
org.eclipse.ecf.provider.filetransfer.ssl_1.0.0.v20130604-1622.jar | |
/prebuilts/misc/windows/sdl2/ |
BUGS.txt | 2 Bugs are now managed in the SDL bug tracker, here:
|
/prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/ |
org.eclipse.ecf.provider.filetransfer.ssl_1.0.0.v20130604-1622.jar | |
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/integration/gs/ |
test_resumable_downloads.py | 54 tracker_file = os.path.join(tmpdir, 'tracker') 77 Tests a single resumable download, with no tracker persistence 91 Tests that failed resumable download leaves a correct tracker file 107 # of CallbackTestHarness (above). Check that the tracker file was 174 with tracker file 191 # Ensure tracker file deleted. 212 then when restarted completes, using a tracker file 234 # Ensure a tracker file survived. 289 Tests resumable download with a tracker file containing an invalid etag 301 # An error should be printed about the invalid tracker, but then i [all...] |