Home | History | Annotate | Download | only in quicksearchbox
      1 # See system/core/logcat/event.logtags for a description of the format of this file.
      2 
      3 option java_package com.android.quicksearchbox
      4 
      5 # QSB started
      6 # @param name Package name of the QSB app.
      7 # @param version QSB app versionCode value.
      8 # @param start_method
      9 #   TODO: Define values for start_method:
     10 #     - home screen widget
     11 #     - through source selector
     12 #     - by touching text field
     13 #     - search hard key on home screen
     14 #     - menu -> search on home screen
     15 #     - source selector in in-app search dialog
     16 #     - search hardkey in in-app search dialog
     17 #     - search hardkey in non-searchable app
     18 #     - app called SearchManager.startSearch()
     19 # @param latency start-up latency as seen by QSB
     20 # @param search_source name of the initially selected search source
     21 # @param enabled_sources A pipe-separated list of source names, ordered by source ranking.
     22 #                TODO: Which are promoted?
     23 71001 qsb_start (name|3),(version|1),(start_method|3),(latency|1|3),(search_source|3),(enabled_sources|3)
     24 
     25 # User clicked on a suggestion
     26 # @param position 0-based index of the clicked suggestion
     27 # @param A pipe-separated list of suggestion log names.
     28 #   TODO: define format of suggestion log names
     29 # @param queried_sources A pipe-separated list of the sources that were queried to produce
     30 #        the list of suggestions shown.
     31 # @param num_chars Number of characters in the query typed by the user
     32 # @param click_type
     33 #     SUGGESTION_CLICK_TYPE_LAUNCH = 0
     34 #     SUGGESTION_CLICK_TYPE_REFINE = 1
     35 #     SUGGESTION_CLICK_TYPE_QUICK_CONTACT = 2
     36 #
     37 # TODO: latency?
     38 71002 qsb_click (position|1),(suggestions|3),(queried_sources|3),(num_chars|1),(click_type|1)
     39 
     40 # User launched a typed search
     41 # @param search_source Name of the selected search source
     42 # @param method
     43 #     SEARCH_METHOD_BUTTON = 0
     44 #     SEARCH_METHOD_KEYBOARD = 1
     45 # @param num_chars The number of characters in the search query
     46 71003 qsb_search (search_source|3),(method|1),(num_chars|1)
     47 
     48 # User launched a Voice Search
     49 # @param search_source Name of the selected search source
     50 71004 qsb_voice_search (search_source|3)
     51 
     52 # User left QSB without clicking / searching
     53 # @param suggestions The suggestions shown when the user left QSB. See qsb_click above.
     54 # @param num_chars The number of characters in the query text field when the user left
     55 71005 qsb_exit (suggestions|3),(num_chars|1)
     56 
     57 # The latency of a suggestion query to a specific corpus.
     58 # @param corpus The corpus that was queried.
     59 # @param latency Query latency.
     60 # @param numChars Number of characters in the query.
     61 71006 qsb_latency (corpus|3),(latency|1|3),(num_chars|1)
     62