-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Tracepoints: refactor the existing tracepoint names
Use CamelCase, like the API they're tracing. Change-Id: Ie718ab624d17c9186bcf05cc1276c8eccad7f454 Reviewed-by: Tor Arne Vestbø <[email protected]> Reviewed-by: Rafael Roquetto <[email protected]>
- Loading branch information
Showing
7 changed files
with
30 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,10 @@ | ||
qfontdatabase_addapplicationfont(const QString &filename) | ||
qfontdatabase_load(const QString &family, int pointSize) | ||
qfontdatabase_loadengine(const QString &family, int pointSize) | ||
qfontdatabaseprivate_addappfont(const QString &fileName) | ||
qguiapplicationprivate_init_entry() | ||
qguiapplicationprivate_init_exit() | ||
qguiapplicationprivate_processwsevents_entry(int type) | ||
qguiapplicationprivate_processwsevents_exit(int type) | ||
QGuiApplicationPrivate_init_entry() | ||
QGuiApplicationPrivate_init_exit() | ||
|
||
QGuiApplicationPrivate_processWindowSystemEvent_entry(int type) | ||
QGuiApplicationPrivate_processWindowSystemEvent_exit(int type) | ||
|
||
QFontDatabase_addApplicationFont(const QString &filename) | ||
QFontDatabase_load(const QString &family, int pointSize) | ||
QFontDatabase_loadEngine(const QString &family, int pointSize) | ||
QFontDatabasePrivate_addAppFont(const QString &fileName) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters