HomeSort by relevance Sort by last modified time
    Searched refs:si (Results 26 - 50 of 190) sorted by null

12 3 4 5 6 7 8

  /system/core/init/
parser.c 19 struct socketinfo *si;
31 for (si = svc->sockets; si; si = si->next) {
32 RAW(" socket %s %s 0%o\n", si->name, si->type, si->perm);
signal_handler.c 49 struct socketinfo *si; local
72 for (si = svc->sockets; si; si = si->next) {
74 snprintf(tmp, sizeof(tmp), ANDROID_SOCKET_DIR"/%s", si->name);
  /bionic/linker/
dlfcn.c 97 soinfo *si = find_containing_library(ret_addr); local
100 if(si && si->next) {
101 sym = lookup(symbol, &found, si->next);
134 soinfo *si = find_containing_library(addr); local
136 if(si) {
139 info->dli_fname = si->name;
140 info->dli_fbase = (void*)si->base;
143 Elf32_Sym *sym = find_containing_symbol(addr, si);
146 info->dli_sname = si->strtab + sym->st_name
    [all...]
  /external/openssl/crypto/pkcs7/
example.c 8 int add_signed_time(PKCS7_SIGNER_INFO *si)
15 PKCS7_add_signed_attribute(si,NID_pkcs9_signingTime,
20 ASN1_UTCTIME *get_signed_time(PKCS7_SIGNER_INFO *si)
24 so=PKCS7_get_signed_attribute(si,NID_pkcs9_signingTime);
32 void add_signed_string(PKCS7_SIGNER_INFO *si, char *str)
43 PKCS7_add_signed_attribute(si,signed_string_nid,
47 int get_signed_string(PKCS7_SIGNER_INFO *si, char *buf, int len)
57 so=PKCS7_get_signed_attribute(si,signed_string_nid);
75 int add_signed_seq2string(PKCS7_SIGNER_INFO *si, char *str1, char *str2)
109 PKCS7_add_signed_attribute(si,signed_seq2string_nid
183 PKCS7_SIGNER_INFO si; local
214 PKCS7_SIGNER_INFO si; local
282 PKCS7_SIGNER_INFO si; local
    [all...]
sign.c 72 PKCS7_SIGNER_INFO *si; local
117 si=PKCS7_add_signature(p7,x509,pkey,EVP_sha1());
118 if (si == NULL) goto err;
121 PKCS7_add_signed_attribute(si, NID_pkcs9_contentType, V_ASN1_OBJECT,
pk7_smime.c 66 static int pkcs7_copy_existing_digest(PKCS7 *p7, PKCS7_SIGNER_INFO *si);
165 PKCS7_SIGNER_INFO *si = NULL; local
174 if (!(si = PKCS7_add_signature(p7,signcert,pkey, md)))
189 if (!PKCS7_add_attrib_content_type(si, NULL))
210 || !PKCS7_add_attrib_smimecap (si, smcap))
217 if (!pkcs7_copy_existing_digest(p7, si))
220 !PKCS7_SIGNER_INFO_sign(si))
224 return si;
235 static int pkcs7_copy_existing_digest(PKCS7 *p7, PKCS7_SIGNER_INFO *si)
245 if (si == sitmp
272 PKCS7_SIGNER_INFO *si; local
434 PKCS7_SIGNER_INFO *si; local
    [all...]
pkcs7.h 226 #define PKCS7_get_signed_attributes(si) ((si)->auth_attr)
227 #define PKCS7_get_attributes(si) ((si)->unauth_attr)
316 int PKCS7_SIGNER_INFO_sign(PKCS7_SIGNER_INFO *si);
322 BIO *bio, PKCS7 *p7, PKCS7_SIGNER_INFO *si);
323 int PKCS7_signatureVerify(BIO *bio, PKCS7 *p7, PKCS7_SIGNER_INFO *si,
333 X509 *PKCS7_cert_from_signer_info(PKCS7 *p7, PKCS7_SIGNER_INFO *si);
338 void PKCS7_SIGNER_INFO_get0_algs(PKCS7_SIGNER_INFO *si, EVP_PKEY **pk,
352 ASN1_TYPE *PKCS7_get_attribute(PKCS7_SIGNER_INFO *si, int nid)
376 STACK_OF(X509_ALGOR) *PKCS7_get_smimecap(PKCS7_SIGNER_INFO *si); variable
    [all...]
  /external/grub/stage2/
nbloader.S 61 xorw %si, %si
102 xorw %si, %si
start_eltorito.S 49 #define MSG(x) mov $ABS(x), %si; call message;
115 mov $ABS(firstlist - BOOTSEC_LISTSIZE), %si
116 mov (%si), %ebp
137 mov $ABS(dapa), %si /* Load up the DAPA */
138 mov %bx, 4(%si)
140 mov %bx, 6(%si)
141 mov %eax, 8(%si)
144 push %si
149 mov %bp, 2(%si)
153 pop %si
    [all...]
  /frameworks/base/core/java/android/view/inputmethod/
InputMethodInfo.java 82 ServiceInfo si = service.serviceInfo; local
83 mId = new ComponentName(si.packageName, si.name).flattenToShortString();
91 parser = si.loadXmlMetaData(pm, InputMethod.SERVICE_META_DATA);
97 Resources res = pm.getResourcesForApplication(si.applicationInfo);
121 "Unable to create context for: " + si.packageName);
143 ServiceInfo si = new ServiceInfo(); local
147 si.applicationInfo = ai;
148 si.enabled = true;
149 si.packageName = packageName
    [all...]
  /frameworks/base/core/tests/coretests/src/android/app/
SearchablesTest.java 81 SearchableInfo si = searchables.getSearchableInfo(nonActivity); local
82 assertNull(si);
147 SearchableInfo si = searchablesList.get(ii); local
148 checkSearchable(si);
152 private void checkSearchable(SearchableInfo si) {
153 assertNotNull(si);
154 assertTrue(si.getLabelId() != 0); // This must be a useable string
155 assertNotEmpty(si.getSearchActivity().getClassName());
156 assertNotEmpty(si.getSearchActivity().getPackageName());
157 if (si.getSuggestAuthority() != null)
    [all...]
  /external/webkit/WebKit/android/plugins/
ANPSoundInterface.cpp 142 ANPAudioTrackInterfaceV0* si = reinterpret_cast<ANPAudioTrackInterfaceV0*>(value); local
143 si->newTrack = ANPCreateTrack;
144 si->deleteTrack = ANPDeleteTrack;
145 si->start = ANPTrackStart;
146 si->pause = ANPTrackPause;
147 si->stop = ANPTrackStop;
148 si->isStopped = ANPTrackIsStopped;
  /packages/apps/Settings/src/com/android/settings/applications/
RunningState.java 339 ServiceItem si = mServices.get(service.service); local
340 if (si == null) {
342 si = new ServiceItem();
343 si.mRunningService = service;
345 si.mServiceInfo = pm.getServiceInfo(service.service, 0);
348 si.mDisplayLabel = makeLabel(pm,
349 si.mRunningService.service.getClassName(), si.mServiceInfo);
351 si.mPackageInfo = si.mServiceInfo.applicationInfo
476 ServiceItem si = mServices.get(i); local
627 ActivityManager.RunningServiceInfo si = services.get(i); local
784 ServiceItem si = sit.next(); local
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/security/pkcs7/
SignerInfo.java 186 SignerInfo si = (SignerInfo) object;
187 values[0] = new byte[] {(byte)si.version};
189 values[1] = new Object[] { new Name(si.issuer.getName()),
190 si.serialNumber.toByteArray() };
192 // The exception is never thrown, because si.issuer
197 values[2] = si.digestAlgorithm;
198 values[3] = si.authenticatedAttributes;
199 values[4] = si.digestEncryptionAlgorithm;
200 values[5] = si.encryptedDigest;
201 values[6] = si.unauthenticatedAttributes
    [all...]
  /external/bluetooth/glib/tests/
child-test.c 60 STARTUPINFO si; local
64 memset (&si, 0, sizeof (si));
65 si.cb = sizeof (&si);
70 if (!CreateProcess (argv0, cmdline, NULL, NULL, FALSE, 0, NULL, NULL, &si, &pi))
  /frameworks/base/media/libstagefright/codecs/mp3dec/src/
pvmp3_mpeg2_get_scale_data.cpp 38 mp3SideInfo *si, side information
127 void pvmp3_mpeg2_get_scale_data(mp3SideInfo *si,
141 granuleInfo *gr_info = &(si->ch[ch].gran[gr]);
177 si->ch[ch].gran[gr].preflag = 0;
187 si->ch[ch].gran[gr].preflag = 0;
198 si->ch[ch].gran[gr].preflag = 0;
208 si->ch[ch].gran[gr].preflag = 1;
pvmp3_mpeg2_get_scale_factors.cpp 40 mp3SideInfo *si, side information
119 mp3SideInfo *si,
132 granuleInfo *gr_info = &(si->ch[ch].gran[gr]);
134 pvmp3_mpeg2_get_scale_data(si,
  /external/iptables/extensions/
libipt_connbytes.c 31 parse_range(const char *arg, struct ipt_connbytes_info *si)
35 si->count.from = strtoul(arg,&colon,10);
38 si->count.to = strtoul(colon+1,&p,10);
41 si->count.to = 0xffffffff;
43 if (si->count.from > si->count.to)
45 si->count.from, si->count.to);
libipt_connrate.c 57 parse_range(const char *arg, struct ipt_connrate_info *si)
66 si->from = parse_value(buffer, 0);
67 si->to = parse_value(colon+1, 0xFFFFFFFF);
68 if (si->from > si->to)
69 exit_error(PARAMETER_PROBLEM, "%u should be less than %u", si->from,si->to);
  /external/libvpx/vpx/src/
vpx_decoder_compat.c 71 vpx_dec_stream_info_t *si)
74 (vpx_codec_stream_info_t *)si);
79 vpx_dec_stream_info_t *si)
82 (vpx_codec_stream_info_t *)si);
143 const vpx_dec_stream_info_t *si,
149 if (!ctx || !mmap || !si || !iter || !ctx->iface)
158 ctx->config.dec->w = si->w;
159 ctx->config.dec->h = si->h;
vpx_decoder.c 71 vpx_codec_stream_info_t *si)
75 if (!iface || !data || !data_sz || !si
76 || si->sz < sizeof(vpx_codec_stream_info_t))
81 si->w = 0;
82 si->h = 0;
84 res = iface->dec.peek_si(data, data_sz, si);
92 vpx_codec_stream_info_t *si)
96 if (!ctx || !si || si->sz < sizeof(vpx_codec_stream_info_t))
103 si->w = 0
    [all...]
  /external/libvpx/vp8/
vp8_dx_iface.c 46 static unsigned long vp8_priv_sz(const vpx_codec_dec_cfg_t *si, vpx_codec_flags_t);
68 vp8_stream_info_t si; member in struct:vpx_codec_alg_priv
79 static unsigned long vp8_priv_sz(const vpx_codec_dec_cfg_t *si, vpx_codec_flags_t flags)
86 (void)si;
114 static vpx_codec_err_t vp8_validate_mmaps(const vp8_stream_info_t *si,
130 /* Verify variable size segment is big enough for the current si. */
135 cfg.w = si->w;
136 cfg.h = si->h;
162 ctx->priv->alg_priv->si.sz = sizeof(ctx->priv->alg_priv->si);
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/cdma/
CdmaInformationRecords.java 155 public byte si; field in class:CdmaInformationRecords.CdmaNumberInfoRec
158 int si) {
163 this.si = (byte)si;
174 ", si: " + si +
191 int pi, int si, int reason) {
193 number, numberType, numberPlan, pi, si);
  /bionic/libc/bionic/
arc4random.c 87 u_int8_t si; local
92 si = rs.s[rs.i];
93 rs.j = (rs.j + si + dat[n % datlen]);
95 rs.s[rs.j] = si;
163 u_int8_t si, sj; local
166 si = rs.s[rs.i];
167 rs.j = (rs.j + si);
170 rs.s[rs.j] = si;
171 return (rs.s[(si + sj) & 0xff]);
  /external/openssl/include/openssl/
pkcs7.h 226 #define PKCS7_get_signed_attributes(si) ((si)->auth_attr)
227 #define PKCS7_get_attributes(si) ((si)->unauth_attr)
316 int PKCS7_SIGNER_INFO_sign(PKCS7_SIGNER_INFO *si);
322 BIO *bio, PKCS7 *p7, PKCS7_SIGNER_INFO *si);
323 int PKCS7_signatureVerify(BIO *bio, PKCS7 *p7, PKCS7_SIGNER_INFO *si,
333 X509 *PKCS7_cert_from_signer_info(PKCS7 *p7, PKCS7_SIGNER_INFO *si);
338 void PKCS7_SIGNER_INFO_get0_algs(PKCS7_SIGNER_INFO *si, EVP_PKEY **pk,
352 ASN1_TYPE *PKCS7_get_attribute(PKCS7_SIGNER_INFO *si, int nid)
376 STACK_OF(X509_ALGOR) *PKCS7_get_smimecap(PKCS7_SIGNER_INFO *si); variable
    [all...]

Completed in 451 milliseconds

12 3 4 5 6 7 8