HomeSort by relevance Sort by last modified time
    Searched refs:con (Results 26 - 50 of 273) sorted by null

12 3 4 5 6 7 8 91011

  /frameworks/base/rs/jni/
android_renderscript_RenderScript.cpp 184 nContextFinish(JNIEnv *_env, jobject _this, jlong con)
186 LOG_API("nContextFinish, con(%p)", (RsContext)con);
187 rsContextFinish((RsContext)con);
191 nAssignName(JNIEnv *_env, jobject _this, jlong con, jlong obj, jbyteArray str)
193 LOG_API("nAssignName, con(%p), obj(%p)", (RsContext)con, (void *)obj);
196 rsAssignName((RsContext)con, (void *)obj, (const char *)cptr, len);
201 nGetName(JNIEnv *_env, jobject _this, jlong con, jlong obj)
203 LOG_API("nGetName, con(%p), obj(%p)", (RsContext)con, (void *)obj)
    [all...]
  /external/libselinux/src/
enabled.c 17 char * con; local
28 if (getcon(&con) == 0) {
29 if (!strcmp(con, "kernel"))
31 freecon(con);
54 if (getcon(&con) == 0) {
55 if (!strcmp(con, "kernel"))
57 freecon(con);
check_context.c 12 int security_check_context(const char * con)
27 ret = write(fd, con, strlen(con) + 1);
get_initial_context.c 14 int security_get_initial_context(const char * name, char ** con)
43 *con = strdup(buf);
44 if (!(*con)) {
  /external/qemu/distrib/libselinux/src/
enabled.c 17 char * con; local
28 if (getcon(&con) == 0) {
29 if (!strcmp(con, "kernel"))
31 freecon(con);
54 if (getcon(&con) == 0) {
55 if (!strcmp(con, "kernel"))
57 freecon(con);
check_context.c 12 int security_check_context(const char * con)
27 ret = write(fd, con, strlen(con) + 1);
get_initial_context.c 14 int security_get_initial_context(const char * name, char ** con)
43 *con = strdup(buf);
44 if (!(*con)) {
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/net/ssl/
HttpsURLConnectionTest.java 66 HttpsURLConnection con = new MyHttpsURLConnection(new URL("https://www.fortify.net/")); local
67 assertEquals("CipherSuite", con.getCipherSuite());
82 HttpsURLConnection con = new MyHttpsURLConnection(new URL("https://www.fortify.net/"), "X.508"); local
83 assertNull(con.getLocalCertificates());
84 con = new MyHttpsURLConnection(new URL("https://www.fortify.net/"), "X.509");
85 Certificate[] cert = con.getLocalCertificates();
114 HttpsURLConnection con = new MyHttpsURLConnection( local
116 HostnameVerifier verifyer = con.getHostnameVerifier();
134 HttpsURLConnection con = new MyHttpsURLConnection(new URL("https://www.fortify.net/"), "X.508"); local
135 assertNull(con.getLocalPrincipal())
151 HttpsURLConnection con = new MyHttpsURLConnection(new URL("https:\/\/www.fortify.net\/"), "X.508"); local
175 HttpsURLConnection con = new MyHttpsURLConnection(new URL("https:\/\/www.fortify.net\/"), "X.508"); local
192 HttpsURLConnection con = new MyHttpsURLConnection(null); local
222 HttpsURLConnection con = new MyHttpsURLConnection(null); local
250 HttpsURLConnection con = new MyHttpsURLConnection(null); local
    [all...]
  /frameworks/support/v8/renderscript/jni/
android_renderscript_RenderScript.cpp 93 nContextFinish(JNIEnv *_env, jobject _this, RsContext con)
95 LOG_API("nContextFinish, con(%p)", con);
96 rsContextFinish(con);
100 nObjDestroy(JNIEnv *_env, jobject _this, RsContext con, jint obj)
102 LOG_API("nObjDestroy, con(%p) obj(%p)", con, (void *)obj);
103 rsObjDestroy(con, (void *)obj);
138 nContextSetPriority(JNIEnv *_env, jobject _this, RsContext con, jint p)
140 LOG_API("ContextSetPriority, con(%p), priority(%i)", con, p)
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/dbus/
dbus_common.c 34 static void dispatch_data(DBusConnection *con)
36 while (dbus_connection_get_dispatch_status(con) ==
38 dbus_connection_dispatch(con);
54 DBusConnection *con = eloop_ctx; local
55 dispatch_data(con);
62 dbus_connection_ref(priv->con);
74 dispatch_data(priv->con);
78 dbus_connection_unref(priv->con);
201 if (sig != SIGPOLL || !priv->con)
204 if (dbus_connection_get_dispatch_status(priv->con) !
    [all...]
dbus_common_i.h 17 DBusConnection *con; member in struct:wpas_dbus_priv
  /external/linux-tools-perf/perf-3.12.0/tools/perf/scripts/python/
event_analyzing_sample.py 35 con = sqlite3.connect("/dev/shm/perf.db") variable
36 con.isolation_level = None
45 con.execute("""
52 con.execute("""
94 con.execute("insert into gen_events values(?, ?, ?, ?)",
99 con.execute("insert into pebs_ll values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)",
108 con.close()
123 count = con.execute("select count(*) from gen_events")
132 commq = con.execute("select comm, count(comm) from gen_events group by comm order by -count(comm)")
139 symbolq = con.execute("select symbol, count(symbol) from gen_events group by symbol order by -count(symbol)"
    [all...]
  /external/smack/src/org/jivesoftware/smackx/search/
UserSearchManager.java 38 * Connection con = new XMPPConnection("jabber.org");
39 * con.login("john", "doe");
40 * UserSearchManager search = new UserSearchManager(con, "users.jabber.org");
52 private Connection con; field in class:UserSearchManager
58 * @param con the Connection to use.
60 public UserSearchManager(Connection con) {
61 this.con = con;
73 return userSearch.getSearchForm(con, searchService);
86 return userSearch.sendSearchForm(con, searchForm, searchService)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/sqlite3/test/
userfunctions.py 125 self.con = sqlite.connect(":memory:")
127 self.con.create_function("returntext", 0, func_returntext)
128 self.con.create_function("returnunicode", 0, func_returnunicode)
129 self.con.create_function("returnint", 0, func_returnint)
130 self.con.create_function("returnfloat", 0, func_returnfloat)
131 self.con.create_function("returnnull", 0, func_returnnull)
132 self.con.create_function("returnblob", 0, func_returnblob)
133 self.con.create_function("returnlonglong", 0, func_returnlonglong)
134 self.con.create_function("raiseexception", 0, func_raiseexception)
136 self.con.create_function("isstring", 1, func_isstring
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/sqlite3/test/
userfunctions.py 125 self.con = sqlite.connect(":memory:")
127 self.con.create_function("returntext", 0, func_returntext)
128 self.con.create_function("returnunicode", 0, func_returnunicode)
129 self.con.create_function("returnint", 0, func_returnint)
130 self.con.create_function("returnfloat", 0, func_returnfloat)
131 self.con.create_function("returnnull", 0, func_returnnull)
132 self.con.create_function("returnblob", 0, func_returnblob)
133 self.con.create_function("returnlonglong", 0, func_returnlonglong)
134 self.con.create_function("raiseexception", 0, func_raiseexception)
136 self.con.create_function("isstring", 1, func_isstring
    [all...]
  /external/smack/src/org/jivesoftware/smackx/
RosterExchangeManager.java 51 private Connection con; field in class:RosterExchangeManager
59 * @param con a Connection which is used to send and receive messages.
61 public RosterExchangeManager(Connection con) {
62 this.con = con;
107 con.sendPacket(msg);
125 con.sendPacket(msg);
146 con.sendPacket(msg);
175 con.addPacketListener(packetListener, packetFilter);
179 if (con != null
    [all...]
  /cts/tools/device-setup/TestDeviceSetup/src/android/tests/getinfo/
DeviceInfoActivity.java 131 Configuration con = getResources().getConfiguration(); local
133 if (con.touchscreen == Configuration.TOUCHSCREEN_UNDEFINED) {
135 } else if (con.touchscreen == Configuration.TOUCHSCREEN_NOTOUCH) {
137 } else if (con.touchscreen == Configuration.TOUCHSCREEN_STYLUS) {
139 } else if (con.touchscreen == Configuration.TOUCHSCREEN_FINGER) {
148 if (con.navigation == Configuration.NAVIGATION_UNDEFINED) {
150 } else if (con.navigation == Configuration.NAVIGATION_NONAV) {
152 } else if (con.navigation == Configuration.NAVIGATION_DPAD) {
154 } else if (con.navigation == Configuration.NAVIGATION_TRACKBALL) {
156 } else if (con.navigation == Configuration.NAVIGATION_WHEEL)
    [all...]
  /external/libcxx/test/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/
Android.mk 17 test_makefile := external/libcxx/test/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/Android.mk
19 test_name := utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/default
23 test_name := utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/alloc
27 test_name := utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/F_incomplete
31 test_name := utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/F_assign
35 test_name := utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/F
39 test_name := utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/alloc_rfunction
43 test_name := utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/nullptr_t_assign
47 test_name := utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/alloc_nullptr
51 test_name := utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/cop
    [all...]
  /frameworks/base/rs/java/android/renderscript/
RenderScript.java 120 native int nContextGetUserMessage(long con, int[] data);
121 native String nContextGetErrorMessage(long con);
122 native int nContextPeekMessage(long con, int[] subID);
123 native void nContextInitToClient(long con);
124 native void nContextDeinitToClient(long con);
216 native void rsnContextDestroy(long con);
232 native void rsnContextSetSurface(long con, int w, int h, Surface sur);
237 native void rsnContextSetSurfaceTexture(long con, int w, int h, SurfaceTexture sur);
242 native void rsnContextSetPriority(long con, int p);
247 native void rsnContextDump(long con, int bits)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_httpservers.py 182 self.con = httplib.HTTPConnection('localhost', self.PORT)
183 self.con.connect()
186 self.con.request('GET', '/')
187 res = self.con.getresponse()
191 self.con._http_vsn_str = 'HTTP/1.1\n'
192 self.con.putrequest('GET', '/')
193 self.con.endheaders()
194 res = self.con.getresponse()
198 self.con._http_vsn_str = 'FUBAR'
199 self.con.putrequest('GET', '/'
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_httpservers.py 182 self.con = httplib.HTTPConnection('localhost', self.PORT)
183 self.con.connect()
186 self.con.request('GET', '/')
187 res = self.con.getresponse()
191 self.con._http_vsn_str = 'HTTP/1.1\n'
192 self.con.putrequest('GET', '/')
193 self.con.endheaders()
194 res = self.con.getresponse()
198 self.con._http_vsn_str = 'FUBAR'
199 self.con.putrequest('GET', '/'
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/extensions/
ExtensionNamespaceSupport.java 77 Constructor con = null; local
80 con = cl.getConstructor(m_sig);
88 con = cons[i];
93 // System.out.println("constructor " + con);
94 if (con != null)
95 handler = (ExtensionHandler)con.newInstance(m_args);
  /external/libselinux/include/selinux/
label.h 87 * @con: returns the appropriate context with which to label the object
94 * The result is returned in the memory pointed to by @con and must be freed
97 int selabel_lookup(struct selabel_handle *handle, char **con,
99 int selabel_lookup_raw(struct selabel_handle *handle, char **con,
104 int selabel_lookup_best_match(struct selabel_handle *rec, char **con,
  /external/oprofile/libpopt/
poptconfig.c 14 static void configLine(poptContext con, char * line)
15 /*@modifies con @*/
23 if (con->appName == NULL)
25 nameLength = strlen(con->appName);
30 if (strncmp(line, con->appName, nameLength)) return;
89 (void) poptAddItem(con, item, 0);
91 (void) poptAddItem(con, item, 1);
96 int poptReadConfigFile(poptContext con, const char * fn)
139 configLine(con, dst);
163 int poptReadDefaultConfig(poptContext con, /*@unused@*/ int useEnv
    [all...]
  /system/core/libpixelflinger/
pixelflinger.cpp 93 static void ggl_bindTexture(void* con, const GGLSurface* surface)
95 GGL_CONTEXT(c, con);
102 static void ggl_bindTextureLod(void* con, GGLuint tmu,const GGLSurface* surface)
104 GGL_CONTEXT(c, con);
109 static void ggl_colorBuffer(void* con, const GGLSurface* surface)
111 GGL_CONTEXT(c, con);
129 static void ggl_readBuffer(void* con, const GGLSurface* surface)
131 GGL_CONTEXT(c, con);
135 static void ggl_depthBuffer(void* con, const GGLSurface* surface)
137 GGL_CONTEXT(c, con);
    [all...]

Completed in 755 milliseconds

12 3 4 5 6 7 8 91011