Lines Matching full:certificate
33 // path to a certificate, or the name of a certificate in the default
34 // certificate directory, or blank to use the default product certificate
35 Certificate string
138 certificate := a.appProperties.Certificate
139 if certificate == "" {
140 certificate = ctx.AConfig().DefaultAppCertificate(ctx).String()
141 } else if dir, _ := filepath.Split(certificate); dir == "" {
142 certificate = filepath.Join(ctx.AConfig().DefaultAppCertificateDir(ctx).String(), certificate)
144 certificate = filepath.Join(android.PathForSource(ctx).String(), certificate)
147 certificates := []string{certificate}