Loading automotive/vehicle/2.0/types.hal +35 −1 Original line number Diff line number Diff line Loading @@ -3248,6 +3248,16 @@ enum DiagnosticFloatSensorIndex : int32_t { * the message is decoded. */ enum VmsMessageType : int32_t { /** * A notification indicating that the sender has been reset. * * The receiving party must reset its internal state and respond to the * sender with a START_SESSION message as acknowledgement. * * This message type uses enum VmsStartSessionMessageIntegerValuesIndex. */ START_SESSION = 17, /** * A request from the subscribers to the VMS service to subscribe to a layer. * Loading Loading @@ -3364,7 +3374,7 @@ enum VmsMessageType : int32_t { */ PUBLISHER_INFORMATION_RESPONSE = 16, LAST_VMS_MESSAGE_TYPE = PUBLISHER_INFORMATION_RESPONSE, LAST_VMS_MESSAGE_TYPE = START_SESSION, }; /** Loading @@ -3377,6 +3387,30 @@ enum VmsBaseMessageIntegerValuesIndex : int32_t { MESSAGE_TYPE = 0, }; /* * Handshake data sent as part of a VmsMessageType.START_SESSION message. * * A new session is initiated by sending a START_SESSION message with the * sender's identifier populated and the receiver's identifier set to -1. * * Identifier values are independently generated, but must be non-negative, and * increase monotonically between reboots. * * Upon receiving a START_SESSION with a mis-matching identifier, the receiver * must clear any cached VMS offering or subscription state and acknowledge the * new session by responding with a START_SESSION message that populates both * identifier fields. * * Any VMS messages received between initiation and completion of the handshake * must be discarded. */ enum VmsStartSessionMessageIntegerValuesIndex : VmsBaseMessageIntegerValuesIndex { /* Identifier field for the Android system service. */ SERVICE_ID = 1, /* Identifier field for the HAL client process. */ CLIENT_ID = 2, }; /* * A VMS message with a layer is sent as part of a VmsMessageType.SUBSCRIBE or * VmsMessageType.UNSUBSCRIBE messages. Loading current.txt +3 −1 Original line number Diff line number Diff line Loading @@ -393,8 +393,10 @@ f8a19622cb0cc890913b1ef3e32b675ffb26089a09e02fef4056ebad324d2b5d android.hardwar 23780340c686ee86986aa5a9755c2d8566224fed177bbb22a5ebf06be574b60c android.hardware.camera.metadata@3.3::types 05d1ee760d81cdd2dc7a70ce0241af9fa830edae33b4be83d9bf5fffe05ddc6f android.hardware.camera.provider@2.4::ICameraProvider da33234403ff5d60f3473711917b9948e6484a4260b5247acdafb111193a9de2 android.hardware.configstore@1.0::ISurfaceFlingerConfigs ede69710c3a95c2cbe818e6c8bb72c7816823face5fc21c17731b26f41d94d65 android.hardware.gnss@1.0::IGnss 21165b8e30c4b2d52980e4728f661420adc16e38bbe73476c06b2085be908f4c android.hardware.gnss@1.0::IGnssCallback d702fb01dc2a0733aa820b7eb65435ee3334f75632ef880bafd2fb8803a20a58 android.hardware.gnss@1.0::IGnssMeasurementCallback b5f1f4c1bd6de71a8e71d70f57cdab904ac024a12f3dee3e2173770a4583bcc2 android.hardware.gnss@1.1::IGnss 7c7721c0f773fcf422b71a4f558545e9e36acc973e58ca51e5bd53905cf46bc0 android.hardware.graphics.bufferqueue@1.0::IGraphicBufferProducer d4fea995378bb4f421b4e24ccf68cad2734ab07fe4f874a126ba558b99df5766 android.hardware.graphics.composer@2.1::IComposerClient f7d7cb747dc01a9fdb2d39a80003b4d8df9be733d65f5842198802eb6209db69 android.hardware.graphics.mapper@2.0::IMapper Loading Loading @@ -467,7 +469,7 @@ b778fcce93eb6294446a940e1bae0200da7bd97b91b91977be2dcd31ca58374f android.hardwar 7f460e795f5d1ed5e378935f98c6db4d39497de988aef1b4c2a4a07a6c400392 android.hardware.gnss@2.0::IAGnss 2e5ad983734069e84a760004b32da0d09e4170c05380abe27e6eb80e4aa70d5a android.hardware.gnss@2.0::IAGnssCallback 1f4ac068a88a72360280d94a7f6fd7c63813c1eea4891a0eb01394d3e7e775f2 android.hardware.gnss@2.0::IAGnssRil 4deafcdcffa2d002119e7f58810b767a84666e76475aae68e757ec2845d9756d android.hardware.gnss@2.0::IGnss f5605f48c2fb9f231615dd932bf730ae9540f4f98b5b7ae2b269975f452f6d73 android.hardware.gnss@2.0::IGnss db6bdf6dfc5edf6c85d2944976db899227abb51079c893874353c322342c50b6 android.hardware.gnss@2.0::IGnssBatching 1f89392f1ebb693d8fa6f50324b1635fc79fab246d31900e63998e1b0e17511c android.hardware.gnss@2.0::IGnssBatchingCallback 64232037109a5e5f53ab0377e755ec494ae93fcb5279e6eea71dec2e7ac6fbfc android.hardware.gnss@2.0::IGnssCallback Loading gnss/1.0/IGnss.hal +20 −3 Original line number Diff line number Diff line Loading @@ -75,8 +75,13 @@ interface IGnss { }; /** * Opens the interface and provides the callback routines * to the implementation of this interface. * Opens the interface and provides the callback routines to the implementation of this * interface. * * The framework calls this method to instruct the GPS engine to prepare for serving requests * from the framework. The GNSS HAL implementation must respond to all GNSS requests from the * framework upon successful return from this method until cleanup() method is called to * close this interface. * * @param callback Callback interface for IGnss. * Loading Loading @@ -105,6 +110,18 @@ interface IGnss { /** * Closes the interface. * * The cleanup() method is called by the framework to tell the GNSS HAL implementation to * not expect any GNSS requests in the immediate future - e.g. this may be called when * location is disabled by a user setting or low battery conditions. The GNSS HAL * implementation must immediately stop responding to any existing requests until the * setCallback() method is called again and the requests are re-initiated by the framework. * * After this method is called, the GNSS HAL implementation may choose to modify GNSS hardware * states to save power. It is expected that when setCallback() method is called again to * reopen this interface, to serve requests, there may be some minor delays in GNSS response * requests as hardware readiness states are restored, not to exceed those that occur on normal * device boot up. */ cleanup(); Loading Loading @@ -153,7 +170,7 @@ interface IGnss { * @param mode Parameter must be one of MS_BASED or STANDALONE. * It is allowed by the platform (and it is recommended) to fallback to * MS_BASED if MS_ASSISTED is passed in, and MS_BASED is supported. * @recurrence GNSS postion recurrence value, either periodic or single. * @recurrence GNSS position recurrence value, either periodic or single. * @param minIntervalMs Represents the time between fixes in milliseconds. * @param preferredAccuracyMeters Represents the requested fix accuracy in meters. * @param preferredTimeMs Represents the requested time to first fix in milliseconds. Loading gnss/1.1/IGnss.hal +6 −1 Original line number Diff line number Diff line Loading @@ -29,6 +29,11 @@ interface IGnss extends @1.0::IGnss { * Opens the interface and provides the callback routines to the implementation of this * interface. * * The framework calls this method to instruct the GPS engine to prepare for serving requests * from the framework. The GNSS HAL implementation must respond to all GNSS requests from the * framework upon successful return from this method until cleanup() method is called to * close this interface. * * @param callback Callback interface for IGnss. * * @return success Returns true on success. Loading @@ -42,7 +47,7 @@ interface IGnss extends @1.0::IGnss { * @param mode Parameter must be one of MS_BASED or STANDALONE. It is allowed by the platform * (and it is recommended) to fallback to MS_BASED if MS_ASSISTED is passed in, and MS_BASED * is supported. * @param recurrence GNSS postion recurrence value, either periodic or single. * @param recurrence GNSS position recurrence value, either periodic or single. * @param minIntervalMs Represents the time between fixes in milliseconds. * @param preferredAccuracyMeters Represents the requested fix accuracy in meters. * @param preferredTimeMs Represents the requested time to first fix in milliseconds. Loading gnss/2.0/IGnss.hal +9 −3 Original line number Diff line number Diff line Loading @@ -43,6 +43,11 @@ interface IGnss extends @1.1::IGnss { * Opens the interface and provides the callback routines to the implementation of this * interface. * * The framework calls this method to instruct the GPS engine to prepare for serving requests * from the framework. The GNSS HAL implementation must respond to all GNSS requests from the * framework upon successful return from this method until cleanup() method is called to * close this interface. * * @param callback Callback interface for IGnss. * * @return success Returns true on success. Loading Loading @@ -83,8 +88,9 @@ interface IGnss extends @1.1::IGnss { /** * This method returns the IGnssMeasurement interface. * * Exactly one of getExtensionGnssMeasurement_1_1() and getExtensionGnssMeasurement_2_0() must * return a non-null handle, and the other method must return nullptr. * Exactly one of getExtensionGnssMeasurement(), getExtensionGnssMeasurement_1_1(), and * getExtensionGnssMeasurement_2_0() methods must return a non-null handle, and the other * methods must return nullptr. * * @return gnssMeasurementIface Handle to the IGnssMeasurement interface. */ Loading Loading
automotive/vehicle/2.0/types.hal +35 −1 Original line number Diff line number Diff line Loading @@ -3248,6 +3248,16 @@ enum DiagnosticFloatSensorIndex : int32_t { * the message is decoded. */ enum VmsMessageType : int32_t { /** * A notification indicating that the sender has been reset. * * The receiving party must reset its internal state and respond to the * sender with a START_SESSION message as acknowledgement. * * This message type uses enum VmsStartSessionMessageIntegerValuesIndex. */ START_SESSION = 17, /** * A request from the subscribers to the VMS service to subscribe to a layer. * Loading Loading @@ -3364,7 +3374,7 @@ enum VmsMessageType : int32_t { */ PUBLISHER_INFORMATION_RESPONSE = 16, LAST_VMS_MESSAGE_TYPE = PUBLISHER_INFORMATION_RESPONSE, LAST_VMS_MESSAGE_TYPE = START_SESSION, }; /** Loading @@ -3377,6 +3387,30 @@ enum VmsBaseMessageIntegerValuesIndex : int32_t { MESSAGE_TYPE = 0, }; /* * Handshake data sent as part of a VmsMessageType.START_SESSION message. * * A new session is initiated by sending a START_SESSION message with the * sender's identifier populated and the receiver's identifier set to -1. * * Identifier values are independently generated, but must be non-negative, and * increase monotonically between reboots. * * Upon receiving a START_SESSION with a mis-matching identifier, the receiver * must clear any cached VMS offering or subscription state and acknowledge the * new session by responding with a START_SESSION message that populates both * identifier fields. * * Any VMS messages received between initiation and completion of the handshake * must be discarded. */ enum VmsStartSessionMessageIntegerValuesIndex : VmsBaseMessageIntegerValuesIndex { /* Identifier field for the Android system service. */ SERVICE_ID = 1, /* Identifier field for the HAL client process. */ CLIENT_ID = 2, }; /* * A VMS message with a layer is sent as part of a VmsMessageType.SUBSCRIBE or * VmsMessageType.UNSUBSCRIBE messages. Loading
current.txt +3 −1 Original line number Diff line number Diff line Loading @@ -393,8 +393,10 @@ f8a19622cb0cc890913b1ef3e32b675ffb26089a09e02fef4056ebad324d2b5d android.hardwar 23780340c686ee86986aa5a9755c2d8566224fed177bbb22a5ebf06be574b60c android.hardware.camera.metadata@3.3::types 05d1ee760d81cdd2dc7a70ce0241af9fa830edae33b4be83d9bf5fffe05ddc6f android.hardware.camera.provider@2.4::ICameraProvider da33234403ff5d60f3473711917b9948e6484a4260b5247acdafb111193a9de2 android.hardware.configstore@1.0::ISurfaceFlingerConfigs ede69710c3a95c2cbe818e6c8bb72c7816823face5fc21c17731b26f41d94d65 android.hardware.gnss@1.0::IGnss 21165b8e30c4b2d52980e4728f661420adc16e38bbe73476c06b2085be908f4c android.hardware.gnss@1.0::IGnssCallback d702fb01dc2a0733aa820b7eb65435ee3334f75632ef880bafd2fb8803a20a58 android.hardware.gnss@1.0::IGnssMeasurementCallback b5f1f4c1bd6de71a8e71d70f57cdab904ac024a12f3dee3e2173770a4583bcc2 android.hardware.gnss@1.1::IGnss 7c7721c0f773fcf422b71a4f558545e9e36acc973e58ca51e5bd53905cf46bc0 android.hardware.graphics.bufferqueue@1.0::IGraphicBufferProducer d4fea995378bb4f421b4e24ccf68cad2734ab07fe4f874a126ba558b99df5766 android.hardware.graphics.composer@2.1::IComposerClient f7d7cb747dc01a9fdb2d39a80003b4d8df9be733d65f5842198802eb6209db69 android.hardware.graphics.mapper@2.0::IMapper Loading Loading @@ -467,7 +469,7 @@ b778fcce93eb6294446a940e1bae0200da7bd97b91b91977be2dcd31ca58374f android.hardwar 7f460e795f5d1ed5e378935f98c6db4d39497de988aef1b4c2a4a07a6c400392 android.hardware.gnss@2.0::IAGnss 2e5ad983734069e84a760004b32da0d09e4170c05380abe27e6eb80e4aa70d5a android.hardware.gnss@2.0::IAGnssCallback 1f4ac068a88a72360280d94a7f6fd7c63813c1eea4891a0eb01394d3e7e775f2 android.hardware.gnss@2.0::IAGnssRil 4deafcdcffa2d002119e7f58810b767a84666e76475aae68e757ec2845d9756d android.hardware.gnss@2.0::IGnss f5605f48c2fb9f231615dd932bf730ae9540f4f98b5b7ae2b269975f452f6d73 android.hardware.gnss@2.0::IGnss db6bdf6dfc5edf6c85d2944976db899227abb51079c893874353c322342c50b6 android.hardware.gnss@2.0::IGnssBatching 1f89392f1ebb693d8fa6f50324b1635fc79fab246d31900e63998e1b0e17511c android.hardware.gnss@2.0::IGnssBatchingCallback 64232037109a5e5f53ab0377e755ec494ae93fcb5279e6eea71dec2e7ac6fbfc android.hardware.gnss@2.0::IGnssCallback Loading
gnss/1.0/IGnss.hal +20 −3 Original line number Diff line number Diff line Loading @@ -75,8 +75,13 @@ interface IGnss { }; /** * Opens the interface and provides the callback routines * to the implementation of this interface. * Opens the interface and provides the callback routines to the implementation of this * interface. * * The framework calls this method to instruct the GPS engine to prepare for serving requests * from the framework. The GNSS HAL implementation must respond to all GNSS requests from the * framework upon successful return from this method until cleanup() method is called to * close this interface. * * @param callback Callback interface for IGnss. * Loading Loading @@ -105,6 +110,18 @@ interface IGnss { /** * Closes the interface. * * The cleanup() method is called by the framework to tell the GNSS HAL implementation to * not expect any GNSS requests in the immediate future - e.g. this may be called when * location is disabled by a user setting or low battery conditions. The GNSS HAL * implementation must immediately stop responding to any existing requests until the * setCallback() method is called again and the requests are re-initiated by the framework. * * After this method is called, the GNSS HAL implementation may choose to modify GNSS hardware * states to save power. It is expected that when setCallback() method is called again to * reopen this interface, to serve requests, there may be some minor delays in GNSS response * requests as hardware readiness states are restored, not to exceed those that occur on normal * device boot up. */ cleanup(); Loading Loading @@ -153,7 +170,7 @@ interface IGnss { * @param mode Parameter must be one of MS_BASED or STANDALONE. * It is allowed by the platform (and it is recommended) to fallback to * MS_BASED if MS_ASSISTED is passed in, and MS_BASED is supported. * @recurrence GNSS postion recurrence value, either periodic or single. * @recurrence GNSS position recurrence value, either periodic or single. * @param minIntervalMs Represents the time between fixes in milliseconds. * @param preferredAccuracyMeters Represents the requested fix accuracy in meters. * @param preferredTimeMs Represents the requested time to first fix in milliseconds. Loading
gnss/1.1/IGnss.hal +6 −1 Original line number Diff line number Diff line Loading @@ -29,6 +29,11 @@ interface IGnss extends @1.0::IGnss { * Opens the interface and provides the callback routines to the implementation of this * interface. * * The framework calls this method to instruct the GPS engine to prepare for serving requests * from the framework. The GNSS HAL implementation must respond to all GNSS requests from the * framework upon successful return from this method until cleanup() method is called to * close this interface. * * @param callback Callback interface for IGnss. * * @return success Returns true on success. Loading @@ -42,7 +47,7 @@ interface IGnss extends @1.0::IGnss { * @param mode Parameter must be one of MS_BASED or STANDALONE. It is allowed by the platform * (and it is recommended) to fallback to MS_BASED if MS_ASSISTED is passed in, and MS_BASED * is supported. * @param recurrence GNSS postion recurrence value, either periodic or single. * @param recurrence GNSS position recurrence value, either periodic or single. * @param minIntervalMs Represents the time between fixes in milliseconds. * @param preferredAccuracyMeters Represents the requested fix accuracy in meters. * @param preferredTimeMs Represents the requested time to first fix in milliseconds. Loading
gnss/2.0/IGnss.hal +9 −3 Original line number Diff line number Diff line Loading @@ -43,6 +43,11 @@ interface IGnss extends @1.1::IGnss { * Opens the interface and provides the callback routines to the implementation of this * interface. * * The framework calls this method to instruct the GPS engine to prepare for serving requests * from the framework. The GNSS HAL implementation must respond to all GNSS requests from the * framework upon successful return from this method until cleanup() method is called to * close this interface. * * @param callback Callback interface for IGnss. * * @return success Returns true on success. Loading Loading @@ -83,8 +88,9 @@ interface IGnss extends @1.1::IGnss { /** * This method returns the IGnssMeasurement interface. * * Exactly one of getExtensionGnssMeasurement_1_1() and getExtensionGnssMeasurement_2_0() must * return a non-null handle, and the other method must return nullptr. * Exactly one of getExtensionGnssMeasurement(), getExtensionGnssMeasurement_1_1(), and * getExtensionGnssMeasurement_2_0() methods must return a non-null handle, and the other * methods must return nullptr. * * @return gnssMeasurementIface Handle to the IGnssMeasurement interface. */ Loading