Home | History | Annotate | Download | only in android

Lines Matching defs:config

109     GnssConfig config;
110 memset(&config, 0, sizeof(GnssConfig));
111 config.size = sizeof(GnssConfig);
112 config.flags = GNSS_CONFIG_FLAGS_SET_ASSISTANCE_DATA_VALID_BIT;
113 config.assistanceServer.size = sizeof(GnssConfigSetAssistanceServer);
115 config.assistanceServer.type = GNSS_ASSISTANCE_TYPE_SUPL;
117 config.assistanceServer.type = GNSS_ASSISTANCE_TYPE_C2K;
122 config.assistanceServer.hostName = strdup(hostname.c_str());
123 config.assistanceServer.port = port;
124 return mGnss->updateConfiguration(config);