/external/ipsec-tools/src/racoon/missing/crypto/sha2/ |
sha2.c | 334 void SHA256_Init(SHA256_CTX* context) { 335 if (context == (SHA256_CTX*)0) { 338 bcopy(sha256_initial_hash_value, context->state, SHA256_DIGEST_LENGTH); 339 bzero(context->buffer, SHA256_BLOCK_LENGTH); 340 context->bitcount = 0; 380 void SHA256_Transform(SHA256_CTX* context, const sha2_word32* data) { 385 W256 = (sha2_word32*)context->buffer; 388 a = context->state[0]; 389 b = context->state[1]; 390 c = context->state[2] 653 SHA256_CTX context; local 982 SHA512_CTX context; local 1057 SHA384_CTX context; local [all...] |
/external/qemu/ |
cpu-exec.c | 285 /* prepare setjmp context for exception handling */ 828 # define EIP_sig(context) (*((unsigned long*)&(context)->uc_mcontext->ss.eip)) 829 # define TRAP_sig(context) ((context)->uc_mcontext->es.trapno) 830 # define ERROR_sig(context) ((context)->uc_mcontext->es.err) 831 # define MASK_sig(context) ((context)->uc_sigmask) 835 # define EIP_sig(context) ((context)->uc_mcontext.__gregs[_REG_EIP] [all...] |
/frameworks/media/libvideoeditor/osal/src/ |
M4OSA_Thread.c | 41 void* M4OSA_threadSyncForEverDo(void *context) 43 M4OSA_ThreadContext* threadContext = (M4OSA_ThreadContext*)context; 50 M4OSA_TRACE2_1("M4OSA_threadSyncForEverDo\t\tLPVOID 0x%x", context); 104 * identified by its "context". The thread function is provided by 106 * context. It's the OSAL real time responsibility for managing its 107 * context. It must be freed by the M4OSA_threadSyncClose function. 108 * The context parameter will be sent back to any OSAL core thread 113 * @param context:(OUT) Context of the created thread 118 * @return M4ERR_CONTEXT_FAILED: the context creation faile [all...] |
/cts/tests/src/android/widget/cts/util/ |
ListItemFactory.java | 19 import android.content.Context; 38 * @param context The context. 42 public static View twoButtonsSeparatedByFiller(int position, Context context, int desiredHeight) { 48 final LinearLayout ll = new LinearLayout(context); 56 final Button topButton = new Button(context); 62 final TextView middleFiller = new TextView(context); 69 final Button bottomButton = new Button(context); 86 * @param context The context [all...] |
/frameworks/base/core/tests/coretests/src/android/util/ |
ListItemFactory.java | 19 import android.content.Context; 38 * @param context The context. 42 public static View twoButtonsSeparatedByFiller(int position, Context context, int desiredHeight) { 48 final LinearLayout ll = new LinearLayout(context); 56 final Button topButton = new Button(context); 62 final TextView middleFiller = new TextView(context); 69 final Button bottomButton = new Button(context); 86 * @param context The context [all...] |
/frameworks/base/libs/rs/ |
rsScriptC_LibGL.cpp | 44 // Context 47 void rsrBindTexture(Context *rsc, Script *sc, ProgramFragment *pf, uint32_t slot, Allocation *a) { 53 void rsrBindSampler(Context *rsc, Script *sc, ProgramFragment *pf, uint32_t slot, Sampler *s) { 59 void rsrBindProgramStore(Context *rsc, Script *sc, ProgramStore *ps) { 64 void rsrBindProgramFragment(Context *rsc, Script *sc, ProgramFragment *pf) { 69 void rsrBindProgramVertex(Context *rsc, Script *sc, ProgramVertex *pv) { 74 void rsrBindProgramRaster(Context *rsc, Script *sc, ProgramRaster *pr) { 79 void rsrBindFrameBufferObjectColorTarget(Context *rsc, Script *sc, Allocation *a, uint32_t slot) { 84 void rsrBindFrameBufferObjectDepthTarget(Context *rsc, Script *sc, Allocation *a) { 89 void rsrClearFrameBufferObjectColorTarget(Context *rsc, Script *sc, uint32_t slot) [all...] |
/packages/apps/Launcher2/src/com/android/launcher2/ |
Hotseat.java | 19 import android.content.Context; 41 public Hotseat(Context context) { 42 this(context, null); 45 public Hotseat(Context context, AttributeSet attrs) { 46 this(context, attrs, 0); 49 public Hotseat(Context context, AttributeSet attrs, int defStyle) { 50 super(context, attrs, defStyle) 99 Context context = getContext(); local [all...] |
/cts/tests/src/android/widget/cts/ |
MockLinearLayout.java | 19 import android.content.Context; 29 public MockLinearLayout(Context context, AttributeSet attrs) { 30 super(context, attrs); 33 public MockLinearLayout(Context context) { 34 super(context);
|
/cts/tests/tests/preference2/src/android/preference2/cts/ |
CustomDialogPreference.java | 20 import android.content.Context; 29 public CustomDialogPreference(Context context, AttributeSet attrs) { 30 super(context, attrs); 36 public CustomDialogPreference(Context context, AttributeSet attrs, int defStyle) { 37 super(context, attrs, defStyle);
|
/development/samples/ApiDemos/src/com/example/android/apis/view/ |
CheckableFrameLayout.java | 19 import android.content.Context; 28 public CheckableFrameLayout(Context context) { 29 super(context); 32 public CheckableFrameLayout(Context context, AttributeSet attrs) { 33 super(context, attrs);
|
/development/samples/SoftKeyboard/src/com/example/android/softkeyboard/ |
LatinKeyboardView.java | 19 import android.content.Context; 30 public LatinKeyboardView(Context context, AttributeSet attrs) { 31 super(context, attrs); 34 public LatinKeyboardView(Context context, AttributeSet attrs, int defStyle) { 35 super(context, attrs, defStyle);
|
/development/samples/Support13Demos/src/com/example/android/supportv13/view/ |
CheckableFrameLayout.java | 19 import android.content.Context; 28 public CheckableFrameLayout(Context context) { 29 super(context); 32 public CheckableFrameLayout(Context context, AttributeSet attrs) { 33 super(context, attrs);
|
/development/samples/Support4Demos/src/com/example/android/supportv4/view/ |
CheckableFrameLayout.java | 19 import android.content.Context; 28 public CheckableFrameLayout(Context context) { 29 super(context); 32 public CheckableFrameLayout(Context context, AttributeSet attrs) { 33 super(context, attrs);
|
/frameworks/base/core/java/android/content/ |
MutableContextWrapper.java | 20 * Special version of {@link ContextWrapper} that allows the base context to 24 public MutableContextWrapper(Context base) { 29 * Change the base context for this ContextWrapper. All calls will then be 30 * delegated to the base context. Unlike ContextWrapper, the base context 33 * @param base The new base context for this wrapper. 35 public void setBaseContext(Context base) {
|
/frameworks/base/core/java/android/widget/ |
ImageSwitcher.java | 21 import android.content.Context; 29 public ImageSwitcher(Context context) 31 super(context); 34 public ImageSwitcher(Context context, AttributeSet attrs) { 35 super(context, attrs);
|
/frameworks/base/core/java/com/android/internal/policy/ |
IPolicy.java | 19 import android.content.Context; 32 public Window makeNewWindow(Context context); 34 public LayoutInflater makeNewLayoutInflater(Context context); 38 public FallbackEventHandler makeNewFallbackEventHandler(Context context);
|
/frameworks/base/core/java/com/android/internal/widget/ |
PasswordEntryKeyboardView.java | 19 import android.content.Context; 31 public PasswordEntryKeyboardView(Context context, AttributeSet attrs) { 32 super(context, attrs); 35 public PasswordEntryKeyboardView(Context context, AttributeSet attrs, int defStyle) { 36 super(context, attrs, defStyle);
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/tablet/ |
NotificationIconArea.java | 19 import android.content.Context; 38 public NotificationIconArea(Context context, AttributeSet attrs) { 39 super(context, attrs); 45 public IconLayout(Context context, AttributeSet attrs) { 46 super(context, attrs);
|
/frameworks/media/libvideoeditor/osal/inc/ |
LVOSA_FileReader_optim.h | 61 M4OSA_ERR M4OSA_fileReadOpen_optim( M4OSA_Context* context, 65 M4OSA_ERR M4OSA_fileReadOpen_optim( M4OSA_Context* context, 71 M4OSA_ERR M4OSA_fileReadData_optim( M4OSA_Context context, 74 M4OSA_ERR M4OSA_fileReadSeek_optim( M4OSA_Context context, 77 M4OSA_ERR M4OSA_fileReadClose_optim( M4OSA_Context context ); 78 M4OSA_ERR M4OSA_fileReadGetOption_optim( M4OSA_Context context, 81 M4OSA_ERR M4OSA_fileReadSetOption_optim( M4OSA_Context context,
|
/packages/apps/Browser/src/com/android/browser/ |
AddNewBookmark.java | 19 import android.content.Context; 35 * @param context The application context for the item. 37 AddNewBookmark(Context context) { 38 super(context); 41 LayoutInflater factory = LayoutInflater.from(context);
|
/packages/apps/Browser/src/com/android/browser/preferences/ |
NonformattingListPreference.java | 18 import android.content.Context; 26 public NonformattingListPreference(Context context) { 27 super(context); 30 public NonformattingListPreference(Context context, AttributeSet attrs) { 31 super(context, attrs);
|
/packages/apps/Calculator/src/com/android/calculator2/ |
CalculatorViewPager.java | 19 import android.content.Context; 24 public CalculatorViewPager(Context context) { 25 super(context); 28 public CalculatorViewPager(Context context, AttributeSet attrs) { 29 super(context, attrs);
|
/packages/apps/Camera/src/com/android/camera/ui/ |
RightAlignedHorizontalScrollView.java | 19 import android.content.Context; 26 public RightAlignedHorizontalScrollView(Context context) { 27 super(context); 30 public RightAlignedHorizontalScrollView(Context context, AttributeSet attrs) { 31 super(context, attrs);
|
TwoStateImageView.java | 21 import android.content.Context; 32 public TwoStateImageView(Context context, AttributeSet attrs) { 33 super(context, attrs); 36 public TwoStateImageView(Context context) { 37 this(context, null);
|
/packages/apps/Contacts/src/com/android/contacts/activities/ |
DialtactsViewPager.java | 19 import android.content.Context; 24 public DialtactsViewPager(Context context) { 25 super(context); 28 public DialtactsViewPager(Context context, AttributeSet attrs) { 29 super(context, attrs);
|