/external/ppp/pppd/plugins/radius/ |
md5.c | 8 MD5_CTX context; local 10 MD5_Init (&context); 11 MD5_Update (&context, input, inlen); 12 MD5_Final (output, &context);
|
/cts/tests/src/android/view/cts/ |
MockViewStub.java | 19 import android.content.Context; 24 public MockViewStub(Context context) { 25 super(context); 28 public MockViewStub(Context context, AttributeSet attrs) { 29 super(context, attrs); 32 public MockViewStub(Context context, AttributeSet attrs, int defStyle) { 33 super(context, attrs, defStyle) [all...] |
/development/host/windows/usb/legacy/driver/ |
android_usb_wdf_object.cpp | 75 AndroidUsbWdfObjectContext* context =
77 ASSERT(NULL != context);
78 if (NULL == context)
82 ASSERT((0 == context->object_type) && (NULL == context->wdf_object_ext));
83 if ((0 != context->object_type) || (NULL != context->wdf_object_ext))
86 context->object_type = object_type();
87 context->wdf_object_ext = this;
117 AndroidUsbWdfObjectContext* context = GetAndroidUsbWdfObjectContext(wdf_obj); [all...] |
/external/v8/src/ |
contexts.cc | 37 JSBuiltinsObject* Context::builtins() { 48 Context* Context::global_context() { 49 // Fast case: the global object for this context has been set. In 51 // context. 57 // have to search the context chain to find the global context. 59 Context* current = this; 62 current = Context::cast(closure->context()); 206 Context* context = this; local [all...] |
/packages/apps/Browser/src/com/android/browser/widget/ |
BookmarkWidgetProvider.java | 22 import android.content.Context; 34 public void onUpdate(Context context, AppWidgetManager mngr, int[] ids) { 35 context.startService(new Intent(BookmarkWidgetService.UPDATE, null, 36 context, BookmarkWidgetService.class)); 40 public void onEnabled(Context context) { 41 context.startService(new Intent(context, BookmarkWidgetService.class)); 45 public void onDisabled(Context context) [all...] |
/external/webkit/JavaScriptCore/API/tests/ |
testapi.c | 45 static JSGlobalContextRef context; variable 49 if (JSValueToBoolean(context, value) != expectedValue) { 57 double number = JSValueToNumber(context, value, NULL); 70 JSStringRef valueAsString = JSValueToStringCopy(context, value, NULL); 95 JSStringRef valueAsString = JSValueToStringCopy(context, value, NULL); 136 static bool MyObject_hasProperty(JSContextRef context, JSObjectRef object, JSStringRef propertyName) 138 UNUSED_PARAM(context); 153 static JSValueRef MyObject_getProperty(JSContextRef context, JSObjectRef object, JSStringRef propertyName, JSValueRef* exception) 155 UNUSED_PARAM(context); 159 return JSValueMakeNumber(context, 1) [all...] |
/external/webkit/WebKitTools/DumpRenderTree/ |
LayoutTestController.cpp | 84 static JSValueRef dumpAsPDFCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) 88 return JSValueMakeUndefined(context); 91 static JSValueRef dumpAsTextCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) 95 return JSValueMakeUndefined(context); 98 static JSValueRef dumpBackForwardListCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) 102 return JSValueMakeUndefined(context); 105 static JSValueRef dumpChildFramesAsTextCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) 109 return JSValueMakeUndefined(context); 112 static JSValueRef dumpChildFrameScrollPositionsCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) 116 return JSValueMakeUndefined(context); [all...] |
AccessibilityUIElement.cpp | 39 static JSValueRef allAttributesCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) 42 return JSValueMakeString(context, attributes.get()); 45 static JSValueRef attributesOfLinkedUIElementsCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) 48 return JSValueMakeString(context, linkedUIDescription.get()); 51 static JSValueRef attributesOfDocumentLinksCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) 54 return JSValueMakeString(context, linkedUIDescription.get()); 57 static JSValueRef attributesOfChildrenCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) 60 return JSValueMakeString(context, childrenDescription.get()); 63 static JSValueRef parameterizedAttributeNamesCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) 66 return JSValueMakeString(context, parameterizedAttributeNames.get()) [all...] |
/packages/apps/Mms/src/com/android/mms/util/ |
Recycler.java | 26 import android.content.Context; 65 public static boolean checkForThreadsOverLimit(Context context) { 69 return smsRecycler.anyThreadOverLimit(context) || mmsRecycler.anyThreadOverLimit(context); 72 public void deleteOldMessages(Context context) { 76 if (!isAutoDeleteEnabled(context)) { 80 Cursor cursor = getAllThreads(context); 82 int limit = getMessageLimit(context); [all...] |
/development/samples/BrowserPlugin/src/com/android/sampleplugin/ |
BackgroundSurface.java | 3 import android.content.Context; 9 public BackgroundSurface(Context context) { 10 super(context);
|
/dalvik/libdex/ |
sha1.h | 15 void SHA1Init(SHA1_CTX* context); 16 void SHA1Update(SHA1_CTX* context, const unsigned char* data, 18 void SHA1Final(unsigned char digest[HASHSIZE], SHA1_CTX* context);
|
/hardware/ti/wlan/wl1271/utils/ |
bmtrace_api.h | 48 int bm_act_register_event(char* module, char* context, char* group, unsigned char level, char* name, char* suffix, int is_param); 65 #define CL_TRACE_END(MODULE, CONTEXT, GROUP, LEVEL, SUFFIX) \ 69 loc = bm_act_register_event(MODULE, CONTEXT, GROUP, LEVEL, (char*)__FUNCTION__, SUFFIX, 0); \ 87 #define CL_TRACE_END_L1(MODULE, CONTEXT, GROUP, SUFFIX) CL_TRACE_END(MODULE, CONTEXT, GROUP, 1, SUFFIX) 88 #define CL_TRACE_END_L2(MODULE, CONTEXT, GROUP, SUFFIX) 89 #define CL_TRACE_END_L3(MODULE, CONTEXT, GROUP, SUFFIX) 90 #define CL_TRACE_END_L4(MODULE, CONTEXT, GROUP, SUFFIX) 91 #define CL_TRACE_END_L5(MODULE, CONTEXT, GROUP, SUFFIX) 103 #define CL_TRACE_END_L1(MODULE, CONTEXT, GROUP, SUFFIX) CL_TRACE_END(MODULE, CONTEXT, GROUP, 1, SUFFIX [all...] |
/system/wlan/ti/wilink_6_1/utils/ |
bmtrace_api.h | 48 int bm_act_register_event(char* module, char* context, char* group, unsigned char level, char* name, char* suffix, int is_param); 65 #define CL_TRACE_END(MODULE, CONTEXT, GROUP, LEVEL, SUFFIX) \ 69 loc = bm_act_register_event(MODULE, CONTEXT, GROUP, LEVEL, (char*)__FUNCTION__, SUFFIX, 0); \ 87 #define CL_TRACE_END_L1(MODULE, CONTEXT, GROUP, SUFFIX) CL_TRACE_END(MODULE, CONTEXT, GROUP, 1, SUFFIX) 88 #define CL_TRACE_END_L2(MODULE, CONTEXT, GROUP, SUFFIX) 89 #define CL_TRACE_END_L3(MODULE, CONTEXT, GROUP, SUFFIX) 90 #define CL_TRACE_END_L4(MODULE, CONTEXT, GROUP, SUFFIX) 91 #define CL_TRACE_END_L5(MODULE, CONTEXT, GROUP, SUFFIX) 103 #define CL_TRACE_END_L1(MODULE, CONTEXT, GROUP, SUFFIX) CL_TRACE_END(MODULE, CONTEXT, GROUP, 1, SUFFIX [all...] |
/frameworks/base/core/jni/ |
android_security_Md5MessageDigest.cpp | 28 jfieldID context; member in struct:android::fields_t 34 MD5_CTX* context = (MD5_CTX *)malloc(sizeof(MD5_CTX)); local 35 MD5_Init(context); 37 env->SetIntField(clazz, fields.context, (int)context); 42 MD5_CTX *context = (MD5_CTX *)env->GetIntField(clazz, fields.context); local 43 if (context != NULL) { 44 free(context); 45 env->SetIntField(clazz, fields.context, 0 ) 53 MD5_CTX *context = (MD5_CTX *)env->GetIntField(clazz, fields.context); local 78 MD5_CTX *context = (MD5_CTX *)env->GetIntField(clazz, fields.context); local [all...] |
/external/icu4c/samples/layout/ |
cgnomelayout.c | 21 struct Context 28 typedef struct Context Context; 80 Context *context = (Context *) gtk_object_get_data(GTK_OBJECT(app), "context"); local 92 if (context->paragraph != NULL) { 93 pf_close(context->paragraph); 96 context->paragraph = newPara 226 Context *context = NEW_ARRAY(Context, 1); local 240 gtk_object_set_data(GTK_OBJECT(app), "context", context); local 265 context); local 270 context); local 281 Context *context = (Context *) gtk_object_get_data(GTK_OBJECT(app), "context"); local [all...] |
gnomelayout.cpp | 33 struct Context 88 Context *context = (Context *) gtk_object_get_data(GTK_OBJECT(app), "context"); local 100 if (context->paragraph != NULL) { 101 delete context->paragraph; 104 context->paragraph = newPara; 108 context->paragraph->breakLines(context->width, context->height) 232 Context *context = new Context(); local 241 gtk_object_set_data(GTK_OBJECT(app), "context", context); local 266 context); local 271 context); local 282 Context *context = (Context *) gtk_object_get_data(GTK_OBJECT(app), "context"); local [all...] |
/external/dbus/bus/ |
bus.c | 2 /* bus.c message bus context object 64 BusContext *context; member in struct:__anon1474 72 BusContext *context; local 85 context = bd->context; 89 return context; 110 BusContext *context; local 112 context = server_get_context (server); 114 return _dbus_loop_add_watch (context->loop, 124 BusContext *context; local 146 BusContext *context; local 159 BusContext *context; local 172 BusContext *context = data; local 524 context); local 536 BusContext *context; local [all...] |
/packages/apps/Settings/src/com/android/settings/ |
TestingSettingsBroadcastReceiver.java | 6 import android.content.Context; 20 public void onReceive(Context context, Intent intent) { 23 i.setClass(context, TestingSettings.class); 25 context.startActivity(i);
|
/packages/apps/Contacts/src/com/android/contacts/model/ |
GoogleSource.java | 29 import android.content.Context; 56 protected void inflate(Context context, int inflateLevel) { 58 inflateStructuredName(context, inflateLevel); 59 inflateNickname(context, inflateLevel); 60 inflatePhone(context, inflateLevel); 61 inflateEmail(context, inflateLevel); 62 inflateStructuredPostal(context, inflateLevel); 63 inflateIm(context, inflateLevel); 64 inflateOrganization(context, inflateLevel) [all...] |
/packages/apps/Camera/src/com/android/camera/ui/ |
CamcorderHeadUpDisplay.java | 19 import android.content.Context; 31 public CamcorderHeadUpDisplay(Context context) { 32 super(context); 37 Context context, PreferenceGroup group) { 38 super.initializeIndicatorBar(context, group); 48 mOtherSettings = new OtherSettingsIndicator(context, prefs); 58 addIndicator(context, group, CameraSettings.KEY_WHITE_BALANCE); 59 addIndicator(context, group, CameraSettings.KEY_VIDEOCAMERA_FLASH_MODE) [all...] |
/packages/apps/Stk/src/com/android/stk/ |
StkAppInstaller.java | 22 import android.content.Context; 32 static void install(Context context) { 33 setAppState(context, true); 36 static void unInstall(Context context) { 37 setAppState(context, false); 40 private static void setAppState(Context context, boolean install) { 41 if (context == null) [all...] |
/frameworks/base/tests/appwidgets/AppWidgetHostTest/src/com/android/tests/appwidgethost/ |
AppWidgetContainerView.java | 19 import android.content.Context; 25 public AppWidgetContainerView(Context context) { 26 super(context); 29 public AppWidgetContainerView(Context context, AttributeSet attrs) { 30 super(context, attrs);
|
/packages/apps/Browser/src/com/android/browser/ |
BrowserYesNoPreference.java | 21 import android.content.Context; 27 public BrowserYesNoPreference(Context context, AttributeSet attrs) { 28 super(context, attrs); 38 Context context = getContext(); local 40 BrowserSettings.getInstance().clearCache(context); 41 BrowserSettings.getInstance().clearDatabases(context); 43 BrowserSettings.getInstance().clearCookies(context); 45 BrowserSettings.getInstance().clearHistory(context); [all...] |
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/EN/ |
ClearUserDictionaryDialogPreferenceEN.java | 19 import android.content.Context; 31 /** The context */ 32 protected Context mContext = null; 37 * @param context The context 40 public ClearUserDictionaryDialogPreferenceEN(Context context, AttributeSet attrs) { 41 super(context, attrs); 42 mContext = context; 48 * @param context The contex [all...] |
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/JAJP/ |
ClearLearnDictionaryDialogPreferenceJAJP.java | 19 import android.content.Context; 31 /** The context */ 32 protected Context mContext = null; 37 * @param context The context 40 public ClearLearnDictionaryDialogPreferenceJAJP(Context context, AttributeSet attrs) { 41 super(context, attrs); 42 mContext = context; 48 * @param context The contex [all...] |