HomeSort by relevance Sort by last modified time
    Searched refs:con (Results 1 - 25 of 162) sorted by null

1 2 3 4 5 6 7

  /packages/inputmethods/OpenWnn/libs/libwnnDictionary/engine/
ndcommon.c 26 NJ_INT16 njd_connect_test(NJ_SEARCH_CONDITION *con, NJ_UINT16 hinsiF, NJ_UINT16 hinsiR)
30 if (con->hinsi.fore != NULL) {
36 if (hinsiF >= con->hinsi.foreSize) {
39 if (*(con->hinsi.fore + (hinsiF / 8)) & (0x80 >> (hinsiF % 8))) {
41 if (con->hinsi.foreFlag != 0) {
47 if (con->hinsi.foreFlag == 0) {
55 if (con->hinsi.rear != NULL) {
61 if (hinsiR >= con->hinsi.rearSize) {
64 if (*(con->hinsi.rear + (hinsiR / 8)) & (0x80 >> (hinsiR % 8))) {
66 if (con->hinsi.rearFlag != 0)
    [all...]
  /sdk/emulator/opengl/tests/event_injector/
emulator-console.c 83 emulatorConsole_eatInput( EmulatorConsole* con )
87 int ret = socket_recv(con->fd, temp, sizeof temp);
102 emulatorConsole_sendOutput( EmulatorConsole* con )
104 if (con->state != STATE_CONNECTED) {
109 while (con->out_msg != NULL) {
110 Msg* msg = con->out_msg;
113 ret = socket_send(con->fd,
121 con->out_msg = msg->next;
129 con->state = STATE_ERROR;
133 iolooper_del_write(con->looper, con->fd)
208 EmulatorConsole* con; local
    [all...]
emulator-console.h 45 void emulatorConsole_sendMouseDown( EmulatorConsole* con, int x, int y );
46 void emulatorConsole_sendMouseMotion( EmulatorConsole* con, int x, int y );
47 void emulatorConsole_sendMouseUp( EmulatorConsole* con, int x, int y );
49 void emulatorConsole_sendKey( EmulatorConsole* con, int keycode, int down );
  /external/libsepol/include/sepol/
context_record.h 13 extern const char *sepol_context_get_user(const sepol_context_t * con);
16 sepol_context_t * con, const char *user);
19 extern const char *sepol_context_get_role(const sepol_context_t * con);
22 sepol_context_t * con, const char *role);
25 extern const char *sepol_context_get_type(const sepol_context_t * con);
28 sepol_context_t * con, const char *type);
31 extern const char *sepol_context_get_mls(const sepol_context_t * con);
34 sepol_context_t * con, const char *mls_range);
41 const sepol_context_t * con,
44 extern void sepol_context_free(sepol_context_t * con);
    [all...]
  /external/libselinux/src/
freecon.c 6 void freecon(security_context_t con)
8 free(con);
enabled.c 18 security_context_t con; local
29 if (getcon(&con) == 0) {
30 if (!strcmp(con, "kernel"))
32 freecon(con);
55 if (getcon(&con) == 0) {
56 if (!strcmp(con, "kernel"))
58 freecon(con);
check_context.c 12 int security_check_context(const security_context_t con)
27 ret = write(fd, con, strlen(con) + 1);
  /external/oprofile/libpopt/
popt.c 41 static void prtcon(const char *msg, poptContext con)
45 con, con->os,
46 (con->os->nextCharArg ? con->os->nextCharArg : ""),
47 (con->os->nextArg ? con->os->nextArg : ""),
48 con->os->next,
49 (con->os->argv && con->os->argv[con->os->next
173 poptContext con = malloc(sizeof(*con)); local
    [all...]
popt.h 215 * @param con context
221 typedef void (*poptCallbackType) (poptContext con,
248 * @param con context
251 void poptResetContext(/*@null@*/poptContext con)
252 /*@modifies con @*/;
256 * @param con context
259 int poptGetNextOpt(/*@null@*/poptContext con)
261 /*@modifies con, fileSystem, internalState @*/;
265 * @param con context
269 const char * poptGetOptArg(/*@null@*/poptContext con)
    [all...]
  /external/libsepol/src/
context_record.c 25 const char *sepol_context_get_user(const sepol_context_t * con)
28 return con->user;
34 sepol_context_t * con, const char *user)
44 free(con->user);
45 con->user = tmp_user;
52 const char *sepol_context_get_role(const sepol_context_t * con)
55 return con->role;
61 sepol_context_t * con, const char *role)
70 free(con->role);
71 con->role = tmp_role
133 sepol_context_t *con = local
    [all...]
  /ndk/sources/host-tools/sed-4.2.1/lib/
se-selinux.in.h 11 static inline int getcon (security_context_t *con _UNUSED_PARAMETER_)
13 static inline void freecon (security_context_t con _UNUSED_PARAMETER_) {}
16 static inline int getfscreatecon (security_context_t *con _UNUSED_PARAMETER_)
18 static inline int setfscreatecon (security_context_t con _UNUSED_PARAMETER_)
22 security_context_t *con _UNUSED_PARAMETER_)
25 security_context_t *con _UNUSED_PARAMETER_)
28 security_context_t *con _UNUSED_PARAMETER_)
31 security_context_t con _UNUSED_PARAMETER_)
34 security_context_t con _UNUSED_PARAMETER_)
37 security_context_t con _UNUSED_PARAMETER_
    [all...]
  /frameworks/compile/libbcc/tests/data/src/
rollo3.c 4 int main(void* con, int ft, int launchID)
  /external/javassist/src/main/javassist/
URLClassPath.java 78 URLConnection con = openClassfile0(classname); local
79 if (con != null)
80 return con.getInputStream();
103 URLConnection con = openClassfile0(classname); local
104 InputStream is = con.getInputStream();
107 return con.getURL();
134 URLConnection con = fetchClass0(host, port, local
136 int size = con.getContentLength();
137 InputStream s = con.getInputStream();
174 URLConnection con = url.openConnection() local
    [all...]
  /sdk/emulator/opengl/system/OpenglSystemCommon/
HostConnection.cpp 58 HostConnection *con = new HostConnection(); local
59 if (NULL == con) {
67 delete con;
73 delete con;
76 con->m_stream = stream;
83 delete con;
90 delete con;
93 con->m_stream = stream;
98 (unsigned int *)con->m_stream->allocBuffer(sizeof(unsigned int));
100 con->m_stream->commitBuffer(sizeof(unsigned int))
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/dbus/
dbus_common_i.h 23 DBusConnection *con; member in struct:wpas_dbus_priv
dbus_common.c 39 static void dispatch_data(DBusConnection *con)
41 while (dbus_connection_get_dispatch_status(con) ==
43 dbus_connection_dispatch(con);
59 DBusConnection *con = eloop_ctx; local
60 dispatch_data(con);
67 dbus_connection_ref(priv->con);
79 dispatch_data(priv->con);
83 dbus_connection_unref(priv->con);
206 if (sig != SIGPOLL || !priv->con)
209 if (dbus_connection_get_dispatch_status(priv->con) !
    [all...]
  /libcore/luni/src/main/java/javax/sql/
StatementEvent.java 40 * @param con
47 public StatementEvent(PooledConnection con, PreparedStatement statement,
49 super(con);
57 * @param con
62 public StatementEvent(PooledConnection con, PreparedStatement statement) {
63 this(con, statement, null);
  /external/libselinux/include/selinux/
selinux.h 19 extern void freecon(security_context_t con);
22 extern void freeconary(security_context_t * con);
26 /* Get current context, and set *con to refer to it.
28 extern int getcon(security_context_t * con);
30 /* Set the current security context to con.
38 extern int setcon(const security_context_t con);
41 set *con to refer to it. Caller must free via freecon. */
42 extern int getpidcon(pid_t pid, security_context_t * con);
44 /* Get previous context (prior to last exec), and set *con to refer to it.
46 extern int getprevcon(security_context_t * con);
    [all...]
  /cts/tools/device-setup/TestDeviceSetup/src/android/tests/getinfo/
DeviceInfoActivity.java 62 Configuration con = getResources().getConfiguration(); local
64 if (con.touchscreen == Configuration.TOUCHSCREEN_UNDEFINED) {
66 } else if (con.touchscreen == Configuration.TOUCHSCREEN_NOTOUCH) {
68 } else if (con.touchscreen == Configuration.TOUCHSCREEN_STYLUS) {
70 } else if (con.touchscreen == Configuration.TOUCHSCREEN_FINGER) {
79 if (con.navigation == Configuration.NAVIGATION_UNDEFINED) {
81 } else if (con.navigation == Configuration.NAVIGATION_NONAV) {
83 } else if (con.navigation == Configuration.NAVIGATION_DPAD) {
85 } else if (con.navigation == Configuration.NAVIGATION_TRACKBALL) {
87 } else if (con.navigation == Configuration.NAVIGATION_WHEEL)
    [all...]
  /external/oprofile/
popt.h 215 * @param con context
221 typedef void (*poptCallbackType) (poptContext con,
248 * @param con context
251 void poptResetContext(/*@null@*/poptContext con)
252 /*@modifies con @*/;
256 * @param con context
259 int poptGetNextOpt(/*@null@*/poptContext con)
261 /*@modifies con, fileSystem, internalState @*/;
265 * @param con context
269 const char * poptGetOptArg(/*@null@*/poptContext con)
    [all...]
  /external/apache-harmony/x-net/src/test/api/java/org/apache/harmony/xnet/tests/javax/net/ssl/
HttpsURLConnectionTest.java 40 HttpsURLConnection con = new MyHttpsURLConnection(new URL( local
43 con.getPeerPrincipal();
50 HttpsURLConnection con = new MyHttpsURLConnection(null); local
51 if (con.getLocalPrincipal() != null) {
65 HttpsURLConnection con = new MyHttpsURLConnection(null); local
67 con.setHostnameVerifier(null);
81 HttpsURLConnection con = new MyHttpsURLConnection(null); local
82 SSLSocketFactory sf = con.getSSLSocketFactory();
97 HttpsURLConnection con = new MyHttpsURLConnection(null); local
99 con.setSSLSocketFactory(null)
    [all...]
  /external/quake/quake/src/QW/client/
console.c 27 console_t *con; // point to either con_main or con_chat variable
155 void Con_Resize (console_t *con)
170 Q_memset (con->text, ' ', CON_TEXTSIZE);
188 Q_memcpy (tbuf, con->text, CON_TEXTSIZE);
189 Q_memset (con->text, ' ', CON_TEXTSIZE);
195 con->text[(con_totallines - 1 - i) * con_linewidth + j] =
196 tbuf[((con->current - i + oldtotallines) %
204 con->current = con_totallines - 1;
205 con->display = con->current
    [all...]
  /libcore/luni/src/test/java/tests/api/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/base/graphics/jni/
android_renderscript_RenderScript.cpp 126 nContextFinish(JNIEnv *_env, jobject _this, RsContext con)
128 LOG_API("nContextFinish, con(%p)", con);
129 rsContextFinish(con);
133 nAssignName(JNIEnv *_env, jobject _this, RsContext con, jint obj, jbyteArray str)
135 LOG_API("nAssignName, con(%p), obj(%p)", con, (void *)obj);
138 rsAssignName(con, (void *)obj, (const char *)cptr, len);
143 nGetName(JNIEnv *_env, jobject _this, RsContext con, jint obj)
145 LOG_API("nGetName, con(%p), obj(%p)", con, (void *)obj)
    [all...]
  /frameworks/base/graphics/java/android/renderscript/
RenderScript.java 80 native int nContextGetUserMessage(int con, int[] data);
81 native String nContextGetErrorMessage(int con);
82 native int nContextPeekMessage(int con, int[] subID);
83 native void nContextInitToClient(int con);
84 native void nContextDeinitToClient(int con);
129 native void rsnContextDestroy(int con);
134 native void rsnContextSetSurface(int con, int w, int h, Surface sur);
139 native void rsnContextSetSurfaceTexture(int con, int w, int h, SurfaceTexture sur);
144 native void rsnContextSetPriority(int con, int p);
149 native void rsnContextDump(int con, int bits)
    [all...]

Completed in 662 milliseconds

1 2 3 4 5 6 7