Searched refs:isolate (Results 1 - 25 of 1020) sorted by last modified time

1234567891011>>

/external/wpa_supplicant_8/hostapd/
H A Dconfig_file.c1934 bss->isolate = atoi(pos);
/external/wpa_supplicant_8/hostapd/src/ap/
H A Dap_config.h248 int isolate; member in struct:hostapd_bss_config
H A Dbeacon.c910 params->isolate = hapd->conf->isolate;
/external/wpa_supplicant_8/hostapd/src/drivers/
H A Ddriver.h842 * isolate - Whether to isolate frames between associated stations
847 int isolate; member in struct:wpa_driver_ap_params
H A Ddriver_nl80211.c7537 params->isolate, params->basic_rates);
/external/wpa_supplicant_8/src/ap/
H A Dap_config.h248 int isolate; member in struct:hostapd_bss_config
H A Dbeacon.c910 params->isolate = hapd->conf->isolate;
/external/wpa_supplicant_8/src/drivers/
H A Ddriver.h842 * isolate - Whether to isolate frames between associated stations
847 int isolate; member in struct:wpa_driver_ap_params
H A Ddriver_nl80211.c7537 params->isolate, params->basic_rates);
/external/wpa_supplicant_8/wpa_supplicant/
H A Dap.c188 bss->isolate = !wpa_s->conf->p2p_intra_bss;
/external/wpa_supplicant_8/wpa_supplicant/src/ap/
H A Dap_config.h248 int isolate; member in struct:hostapd_bss_config
H A Dbeacon.c910 params->isolate = hapd->conf->isolate;
/external/wpa_supplicant_8/wpa_supplicant/src/drivers/
H A Ddriver.h842 * isolate - Whether to isolate frames between associated stations
847 int isolate; member in struct:wpa_driver_ap_params
H A Ddriver_nl80211.c7537 params->isolate, params->basic_rates);
/external/skia/experimental/SkV8Example/
H A DGlobal.h26 // Provides the global isolate and context for our V8 instance.
30 Global(Isolate* isolate) argument
31 : fIsolate(isolate)
H A DSkV8Example.cpp172 Isolate* isolate = Isolate::GetCurrent(); local
173 Global* global = new Global(isolate);
/external/robolectric/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...
/external/pdfium/fpdfsdk/include/javascript/
H A DDocument.h175 void SetIsolate(v8::Isolate* isolate) {m_isolate = isolate;} argument
H A DField.h235 void SetIsolate(v8::Isolate* isolate) {m_isolate = isolate;} argument
H A DJS_Define.h98 v8::Isolate* isolate = info.GetIsolate();\
99 v8::Local<v8::Context> context = isolate->GetCurrentContext();\
106 CJS_PropValue value(isolate);\
108 CJS_Object* pJSObj = (CJS_Object*)JS_GetPrivate(isolate,info.Holder());\
144 v8::Isolate* isolate = info.GetIsolate();\
145 v8::Local<v8::Context> context = isolate->GetCurrentContext();\
152 CJS_PropValue propValue(CJS_Value(isolate,value,VT_unknown));\
154 CJS_Object* pJSObj = (CJS_Object*)JS_GetPrivate(isolate,info.Holder());\
195 v8::Isolate* isolate = info.GetIsolate();\
196 v8::Local<v8::Context> context = isolate
[all...]
H A DJS_Runtime.h54 void SetIsolate(v8::Isolate* isolate){m_isolate = isolate;} argument
H A DJS_Value.h16 CJS_Value(v8::Isolate* isolate);
17 CJS_Value(v8::Isolate* isolate, v8::Handle<v8::Value> pValue,FXJSVALUETYPE t);
18 CJS_Value(v8::Isolate* isolate, const int &iValue);
19 CJS_Value(v8::Isolate* isolate, const double &dValue);
20 CJS_Value(v8::Isolate* isolate, const float &fValue);
21 CJS_Value(v8::Isolate* isolate, const bool &bValue);
22 CJS_Value(v8::Isolate* isolate, JSFXObject);
23 CJS_Value(v8::Isolate* isolate, CJS_Object *);
24 CJS_Value(v8::Isolate* isolate, FX_LPCSTR pStr);
25 CJS_Value(v8::Isolate* isolate, FX_LPCWST
[all...]
H A DPublicMethods.h98 static CJS_Array AF_MakeArrayFromList(v8::Isolate* isolate, CJS_Value val);
/external/pdfium/fpdfsdk/src/javascript/
H A DDocument.cpp323 v8::Isolate* isolate = GetIsolate(cc); local
333 CJS_Array arrayFileds(isolate);
372 CJS_Value valName(isolate);
424 v8::Isolate* isolate = GetIsolate(cc); local
450 CJS_Field * pJSField = (CJS_Field*)JS_GetPrivate(isolate,pFieldObj);
756 v8::Isolate* isolate = GetIsolate(cc); local
757 CJS_Array aName(isolate);
775 CJS_Value valElement(isolate);
828 v8::Isolate* isolate = GetIsolate(cc); local
829 CJS_Array aFields(isolate);
967 v8::Isolate* isolate = GetIsolate(cc); local
1047 v8::Isolate* isolate = GetIsolate(cc); local
2098 v8::Isolate* isolate = GetIsolate(cc); local
2166 v8::Isolate* isolate = GetIsolate(cc); local
2253 v8::Isolate* isolate = GetIsolate(cc); local
2361 v8::Isolate* isolate = GetIsolate(cc); local
[all...]
H A DJS_Value.cpp14 CJS_Value::CJS_Value(v8::Isolate* isolate) : m_isolate(isolate),m_eType(VT_unknown) argument
17 CJS_Value::CJS_Value(v8::Isolate* isolate, v8::Handle<v8::Value> pValue,FXJSVALUETYPE t) :m_isolate(isolate), m_pValue(pValue) , m_eType(t) argument
21 CJS_Value::CJS_Value(v8::Isolate* isolate, const int &iValue):m_isolate(isolate) argument
26 CJS_Value::CJS_Value(v8::Isolate* isolate, const bool &bValue):m_isolate(isolate) argument
31 CJS_Value::CJS_Value(v8::Isolate* isolate, const float &fValue):m_isolate(isolate) argument
36 CJS_Value(v8::Isolate* isolate, const double &dValue) argument
41 CJS_Value(v8::Isolate* isolate, JSFXObject pJsObj) argument
46 CJS_Value(v8::Isolate* isolate, CJS_Object * pJsObj) argument
51 CJS_Value(v8::Isolate* isolate, FX_LPCWSTR pWstr) argument
56 CJS_Value(v8::Isolate* isolate, FX_LPCSTR pStr) argument
61 CJS_Value(v8::Isolate* isolate, CJS_Array& array) argument
300 CJS_PropValue(v8::Isolate* isolate) argument
451 CJS_Array(v8::Isolate* isolate) argument
502 CJS_Date(v8::Isolate* isolate) argument
506 CJS_Date(v8::Isolate* isolate,double dMsec_time) argument
512 CJS_Date(v8::Isolate* isolate,int year, int mon, int day,int hour, int min, int sec) argument
[all...]

Completed in 575 milliseconds

1234567891011>>