HomeSort by relevance Sort by last modified time
    Searched defs:si (Results 51 - 75 of 97) sorted by null

1 23 4

  /external/libffi/src/powerpc/
ffi.c 447 signed int **si; member in union:__anon4975
565 gprvalue = **p_argv.si;
    [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...]
  /external/openssl/crypto/pkcs7/
pk7_doit.c 665 static int do_pkcs7_signed_attrib(PKCS7_SIGNER_INFO *si, EVP_MD_CTX *mctx)
671 if (!PKCS7_get_signed_attribute(si, NID_pkcs9_signingTime))
673 if (!PKCS7_add0_attrib_signing_time(si, NULL))
683 if (!PKCS7_add1_attrib_digest(si, md_data, md_len))
690 if (!PKCS7_SIGNER_INFO_sign(si))
702 PKCS7_SIGNER_INFO *si; local
775 si=sk_PKCS7_SIGNER_INFO_value(si_sk,i);
776 if (si->pkey == NULL)
779 j = OBJ_obj2nid(si->digest_alg->algorithm);
792 sk=si->auth_attr
    [all...]
  /external/strace/
stream.c 939 struct strioctl si; local
949 if (umove(tcp, arg, &si) < 0) {
955 iop = ioctl_lookup(si.ic_cmd);
961 tprintf(", {ic_cmd=%#x", si.ic_cmd);
962 if (si.ic_timout == INFTIM)
965 tprintf(" ic_timout=%d, ", si.ic_timout);
968 switch (si.ic_cmd) {
982 tprintf("ic_len=%d, ic_dp=", si.ic_len);
983 switch (si.ic_cmd) {
991 si.ic_dp, si.ic_len)
    [all...]
process.c 2129 siginfo_t si; local
    [all...]
strace.c 2251 struct siginfo si; local
2263 siginfo_t si; local
    [all...]
  /external/chromium/third_party/icu/source/i18n/
uregex.cpp 1217 int32_t si; local
    [all...]
uspoof.cpp 38 SpoofImpl *si = new SpoofImpl(SpoofData::getDefault(*status), *status); local
40 delete si;
41 si = NULL;
43 return (USpoofChecker *)si;
54 SpoofImpl *si = new SpoofImpl(sd, *status); local
57 delete si;
60 if (sd == NULL || si == NULL) {
63 delete si;
70 return reinterpret_cast<USpoofChecker *>(si);
  /external/icu4c/i18n/
uspoof.cpp 38 SpoofImpl *si = new SpoofImpl(SpoofData::getDefault(*status), *status); local
40 delete si;
41 si = NULL;
43 return (USpoofChecker *)si;
54 SpoofImpl *si = new SpoofImpl(sd, *status); local
57 delete si;
60 if (sd == NULL || si == NULL) {
63 delete si;
70 return reinterpret_cast<USpoofChecker *>(si);
  /external/openssl/apps/
cms.c 937 CMS_SignerInfo *si; local
941 si = sk_CMS_SignerInfo_value(sis, 0);
942 srcms = CMS_sign_receipt(si, signer, key, other, flags);
985 CMS_SignerInfo *si; local
996 si = CMS_add1_signer(cms, signer, key, sign_md, flags);
997 if (!si)
999 if (rr && !CMS_add1_ReceiptRequest(si, rr))
1250 CMS_SignerInfo *si; local
1259 si = sk_CMS_SignerInfo_value(sis, i);
1260 rv = CMS_get1_ReceiptRequest(si, &rr)
    [all...]
  /frameworks/base/core/java/android/content/pm/
RegisteredServicesCache.java 382 android.content.pm.ServiceInfo si = service.serviceInfo; local
383 ComponentName componentName = new ComponentName(si.packageName, si.name);
389 parser = si.loadXmlMetaData(pm, mMetaDataName);
407 V v = parseServiceAttributes(pm.getResourcesForApplication(si.applicationInfo),
408 si.packageName, attrs);
418 "Unable to load resources for pacakge " + si.packageName);
  /packages/apps/Settings/src/com/android/settings/applications/
RunningServiceDetails.java 84 RunningState.ServiceItem si = mServiceItem; local
86 if ((si.mServiceInfo.applicationInfo.flags&ApplicationInfo.FLAG_SYSTEM) != 0) {
88 args.putParcelable("comp", si.mRunningService.service);
94 stopService(new Intent().setComponent(si.mRunningService.service));
212 void addServiceDetailsView(RunningState.ServiceItem si, RunningState.MergedItem mi) {
221 RunningState.BaseItem bi = si != null ? si : mi;
228 detail.mServiceItem = si;
232 if (si != null && si.mRunningService.clientLabel != 0)
    [all...]
  /system/core/debuggerd/
debuggerd.c 367 siginfo_t si; local
369 memset(&si, 0, sizeof(si));
370 if(ptrace(PTRACE_GETSIGINFO, pid, 0, &si)){
375 si.si_code, get_sigcode(sig, si.si_code),
376 si.si_addr);
  /system/core/init/
init.c 194 struct socketinfo *si; local
208 for (si = svc->sockets; si; si = si->next) {
210 !strcmp(si->type, "stream") ? SOCK_STREAM :
211 (!strcmp(si->type, "dgram") ? SOCK_DGRAM : SOCK_SEQPACKET));
212 int s = create_socket(si->name, socket_type,
213 si->perm, si->uid, si->gid)
    [all...]
  /bionic/linker/
linker.c 86 static int link_image(soinfo *si, unsigned wr_offset);
109 static inline int validate_soinfo(soinfo *si)
111 return (si >= sopool && si < sopool + SO_MAX) ||
112 si == &libdl_info;
265 soinfo *si; local
284 si = freelist;
288 memset(si, 0, sizeof(soinfo));
289 strcpy((char*) si->name, name);
290 sonext->next = si;
337 soinfo *si; local
364 soinfo *si; local
385 soinfo *si; local
533 soinfo *si; local
561 soinfo *si; local
1100 soinfo *si = NULL; local
1202 soinfo *si; local
2111 soinfo *si; local
    [all...]
  /development/samples/GlobalTime/src/com/android/globaltime/
GLView.java 921 float si = params[SPECULAR_INTENSITY]; local
922 light[0] = params[SPECULAR_RED]*si;
923 light[1] = params[SPECULAR_GREEN]*si;
924 light[2] = params[SPECULAR_BLUE]*si;
  /external/icu4c/layoutex/
ParagraphLayout.cpp 764 le_int32 run, offset, *si; local
768 si = styleIndices;
772 const LEFontInstance *runFont = fontRuns->getFont(si[0]);
773 le_int32 script = fScriptRuns->getValue(si[1]);
786 si += styleCount;
    [all...]
  /external/libvpx/
vpxdec.c 435 vpx_codec_stream_info_t si; local
444 buf + 4, 32 - 4, &si))
448 *width = si.w;
449 *height = si.h;
  /external/webkit/WebCore/rendering/
RenderText.cpp 1243 StringImpl* si = m_text.get(); local
1366 StringImpl* si = m_text.get(); local
    [all...]
  /frameworks/base/services/java/com/android/server/
WallpaperManagerService.java 506 ServiceInfo si = mContext.getPackageManager().getServiceInfo(componentName, local
508 if (!android.Manifest.permission.BIND_WALLPAPER.equals(si.permission)) {
523 if (rsi.name.equals(si.name) &&
524 rsi.packageName.equals(si.packageName)) {
    [all...]
  /bionic/libc/stdlib/
strtod.c 1918 ULong si, zs; local
    [all...]
  /dalvik/vm/oo/
Class.c 2853 int si; local
    [all...]
  /external/chromium/third_party/icu/source/common/
utext.cpp 2494 int32_t si, di; local
    [all...]
  /external/elfcopy/
elfcopy.c 2707 int si, pi; local
2927 int si, sj, pi; local
    [all...]
  /external/icu4c/common/
utext.cpp 2856 int32_t si, di; local
    [all...]

Completed in 2675 milliseconds

1 23 4