HomeSort by relevance Sort by last modified time
    Searched refs:major (Results 51 - 75 of 556) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/openssh/
gss-genr.c 102 *major_status = ctxt->major;
109 gss_display_status(&lmin, ctxt->major,
199 ctx->major = gss_init_sec_context(&ctx->minor,
204 if (GSS_ERROR(ctx->major))
207 return (ctx->major);
221 if ((ctx->major = gss_import_name(&ctx->minor,
226 return (ctx->major);
232 if ((ctx->major = gss_get_mic(&ctx->minor, ctx->context,
236 return (ctx->major);
255 OM_uint32 major, minor local
    [all...]
  /external/webkit/Source/WebCore/platform/win/
SystemInfo.cpp 34 WindowsVersion windowsVersion(int* major, int* minor)
83 if (major)
84 *major = majorVersion;
92 int major, minor; local
93 WindowsVersion version = windowsVersion(&major, &minor);
114 return makeString(familyName, String::number(major), '.', String::number(minor));
SystemInfo.h 62 // If supplied, |major| and |minor| are set to the OSVERSIONINFO::dwMajorVersion
64 WindowsVersion windowsVersion(int* major = 0, int* minor = 0);