HomeSort by relevance Sort by last modified time
    Searched refs:nmea (Results 1 - 19 of 19) sorted by null

  /frameworks/base/location/java/android/location/
IGpsStatusListener.aidl 32 void onNmeaReceived(long timestamp, String nmea);
GpsStatus.java 119 * Used for receiving NMEA sentences from the GPS.
120 * NMEA 0183 is a standard for communicating with marine electronic devices
122 * See <a href="http://en.wikipedia.org/wiki/NMEA_0183">NMEA 0183</a> for more details.
124 * to receive NMEA data from the GPS engine.
127 void onNmeaReceived(long timestamp, String nmea);
LocationManager.java     [all...]
  /frameworks/base/services/core/java/com/android/server/location/
GpsStatusListenerHelper.java 83 public void onNmeaReceived(final long timestamp, final String nmea) {
87 listener.onNmeaReceived(timestamp, nmea);
GpsLocationProvider.java 1571 String nmea = new String(mNmeaBuffer, 0 \/* offset *\/, length); local
    [all...]
  /hardware/qcom/gps/core/
LocAdapterBase.cpp 88 reportNmea(const char* nmea, int length)
LocAdapterBase.h 89 virtual void reportNmea(const char* nmea, int length);
LocApiBase.h 112 void reportNmea(const char* nmea, int length);
LocApiBase.cpp 257 void LocApiBase::reportNmea(const char* nmea, int length)
260 TO_ALL_LOCADAPTERS(mLocAdapters[i]->reportNmea(nmea, length));
  /hardware/qcom/gps/msm8960/core/
LocAdapterBase.h 87 virtual void reportNmea(const char* nmea, int length);
LocAdapterBase.cpp 96 reportNmea(const char* nmea, int length)
LocApiBase.h 98 void reportNmea(const char* nmea, int length);
LocApiBase.cpp 227 void LocApiBase::reportNmea(const char* nmea, int length)
230 TO_ALL_LOCADAPTERS(mLocAdapters[i]->reportNmea(nmea, length));
  /hardware/qcom/gps/msm8960/loc_api/libloc_api_50001/
LocEngAdapter.cpp 162 void LocEngAdapter::reportNmea(const char* nmea, int length)
164 sendMsg(new LocEngReportNmea(mOwner, nmea, length));
LocEngAdapter.h 251 virtual void reportNmea(const char* nmea, int length);
  /hardware/qcom/gps/loc_api/libloc_api_50001/
LocEngAdapter.cpp 246 void LocEngAdapter::reportNmea(const char* nmea, int length)
248 sendMsg(new LocEngReportNmea(mOwner, nmea, length));
LocEngAdapter.h 278 virtual void reportNmea(const char* nmea, int length);
  /frameworks/base/services/core/jni/
com_android_server_location_GpsLocationProvider.cpp 113 static void nmea_callback(GpsUtcTime timestamp, const char* nmea, int length)
118 sNmeaString = nmea;
691 jbyte* nmea = (jbyte *)env->GetPrimitiveArrayCritical(nmeaArray, 0); local
695 memcpy(nmea, sNmeaString, length);
696 env->ReleasePrimitiveArrayCritical(nmeaArray, nmea, JNI_ABORT);
    [all...]
  /hardware/libhardware/include/hardware/
gps.h 517 /** Callback for reporting NMEA sentences.
520 typedef void (* gps_nmea_callback)(GpsUtcTime timestamp, const char* nmea, int length);
    [all...]

Completed in 311 milliseconds