Searched defs:rtype (Results 1 - 24 of 24) sorted by relevance

/external/libffi/src/
H A Dprep_cif.c89 ffi_type *rtype, ffi_type **atypes)
101 cif->rtype = rtype;
106 if ((cif->rtype->size == 0) && (initialize_aggregate(cif->rtype) != FFI_OK))
110 FFI_ASSERT_VALID_TYPE(cif->rtype);
115 if (cif->rtype->type == FFI_TYPE_STRUCT
117 && (cif->abi != FFI_V9 || cif->rtype->size > 32)
120 && (cif->rtype->size > 8)
88 ffi_prep_cif(ffi_cif *cif, ffi_abi abi, unsigned int nargs, ffi_type *rtype, ffi_type **atypes) argument
/external/libffi/src/cris/
H A Dffi.c159 ffi_type * rtype, ffi_type ** atypes)
171 cif->rtype = rtype;
175 if ((cif->rtype->size == 0)
176 && (initialize_aggregate_packed_struct (cif->rtype) != FFI_OK))
179 FFI_ASSERT_VALID_TYPE (cif->rtype);
218 switch (cif->rtype->type)
226 cif->flags = (unsigned) cif->rtype->type;
250 if ((rvalue == NULL) && (cif->rtype->type == FFI_TYPE_STRUCT))
252 ecif.rvalue = alloca (cif->rtype
157 ffi_prep_cif(ffi_cif * cif, ffi_abi abi, unsigned int nargs, ffi_type * rtype, ffi_type ** atypes) argument
[all...]
/external/kernel-headers/original/linux/
H A Duhid.h69 __u8 rtype; member in struct:uhid_output_req
81 __u8 rtype; member in struct:uhid_feature_req
/external/elfutils/libdwfl/
H A Drelocate.c307 int rtype, int symndx)
311 Elf_Type type = ebl_reloc_simple_type (mod->ebl, rtype);
306 relocate(GElf_Addr offset, const GElf_Sxword *addend, int rtype, int symndx) argument
/external/javassist/src/main/javassist/
H A DCtBehavior.java777 CtClass rtype = getReturnType0();
778 int varNo = jv.recordReturnType(rtype, true);
782 int handlerLen = insertAfterHandler(asFinally, b, rtype, varNo,
785 insertAfterAdvice(b, jv, src, pool, rtype, varNo);
827 ConstPool cp, CtClass rtype, int varNo)
830 if (rtype == CtClass.voidType) {
839 code.addStore(varNo, rtype);
841 code.addLoad(varNo, rtype);
842 if (rtype.isPrimitive())
843 code.addOpcode(((CtPrimitiveType)rtype)
826 insertAfterAdvice(Bytecode code, Javac jv, String src, ConstPool cp, CtClass rtype, int varNo) argument
878 insertAfterHandler(boolean asFinally, Bytecode b, CtClass rtype, int returnVarNo, Javac javac, String src) argument
[all...]
/external/libffi/darwin-x86/
H A Dffi.h181 ffi_type *rtype; member in struct:__anon7295
350 ffi_type *rtype,
/external/libffi/include/
H A Dffi_real.h182 ffi_type *rtype; member in struct:__anon7303
351 ffi_type *rtype,
/external/llvm/lib/ExecutionEngine/Interpreter/
H A DExternalFunctions.cpp219 ffi_type *rtype = ffiTypeFor(RetTy); local
221 if (ffi_prep_cif(&cif, FFI_DEFAULT_ABI, NumArgs, rtype, &args[0]) == FFI_OK) {
/external/opencv/ml/src/
H A Dmlnbayes.cpp294 int rtype = 0, rstep = 0, size; local
317 rtype = CV_MAT_TYPE(results->type);
318 rstep = CV_IS_MAT_CONT(results->type) ? 1 : results->step/CV_ELEM_SIZE(rtype);
370 if( rtype == CV_32SC1 )
/external/wpa_supplicant_8/wpa_supplicant/
H A Dnotify.c150 enum wpa_ctrl_req_type rtype,
153 wpas_dbus_signal_network_request(wpa_s, ssid, rtype, default_txt);
148 wpas_notify_network_request(struct wpa_supplicant *wpa_s, struct wpa_ssid *ssid, enum wpa_ctrl_req_type rtype, const char *default_txt) argument
/external/openssh/
H A Dserverloop.c1100 char *rtype; local
1104 rtype = packet_get_string(NULL);
1106 debug("server_input_global_request: rtype %s want_reply %d", rtype, want_reply);
1109 if (strcmp(rtype, "tcpip-forward") == 0) {
1140 } else if (strcmp(rtype, "cancel-tcpip-forward") == 0) {
1152 } else if (strcmp(rtype, "no-more-sessions@openssh.com") == 0) {
1164 xfree(rtype);
1172 char *rtype; local
1175 rtype
[all...]
H A Dclientloop.c1926 char *rtype; local
1929 rtype = packet_get_string(NULL);
1932 debug("client_input_channel_req: channel %d rtype %s reply %d",
1933 id, rtype, reply);
1940 } else if (strcmp(rtype, "eow@openssh.com") == 0) {
1943 } else if (strcmp(rtype, "exit-status") == 0) {
1965 xfree(rtype);
1970 char *rtype; local
1974 rtype = packet_get_string(NULL);
1976 debug("client_input_global_request: rtype
[all...]
H A Dmonitor_wrap.c168 u_char rtype; local
173 rtype = buffer_get_char(m);
174 if (rtype != type)
175 fatal("%s: read: rtype %d != type %d", __func__,
176 rtype, type);
H A Dsession.c2230 session_input_channel_req(Channel *c, const char *rtype) argument
2237 c->self, rtype);
2240 debug("session_input_channel_req: session %d req %s", s->self, rtype);
2247 if (strcmp(rtype, "shell") == 0) {
2249 } else if (strcmp(rtype, "exec") == 0) {
2251 } else if (strcmp(rtype, "pty-req") == 0) {
2253 } else if (strcmp(rtype, "x11-req") == 0) {
2255 } else if (strcmp(rtype, "auth-agent-req@openssh.com") == 0) {
2257 } else if (strcmp(rtype, "subsystem") == 0) {
2259 } else if (strcmp(rtype, "en
[all...]
H A Dchannels.c167 static void port_open_helper(Channel *c, char *rtype);
1371 port_open_helper(Channel *c, char *rtype) argument
1385 direct = (strcmp(rtype, "direct-tcpip") == 0);
1390 rtype, c->listening_port, c->path, c->host_port,
1398 packet_put_cstring(rtype);
1452 char *rtype; local
1461 rtype = "forwarded-tcpip";
1465 rtype = "dynamic-tcpip";
1468 rtype = "direct-tcpip";
1479 nc = channel_new(rtype, nextstat
[all...]
/external/ppp/pppd/
H A Deap.c2150 int code, id, len, rtype, vallen; local
2175 GETCHAR(rtype, inp);
2177 if (rtype >= 1 &&
2178 rtype <= sizeof (eap_typenames) / sizeof (char *))
2179 printer(arg, " %s", eap_typenames[rtype-1]);
2181 printer(arg, " type=0x%x", rtype);
2182 switch (rtype) {
2310 GETCHAR(rtype, inp);
2312 if (rtype >= 1 &&
2313 rtype <
[all...]
/external/wpa_supplicant_8/wpa_supplicant/dbus/
H A Ddbus_new.h142 enum wpa_ctrl_req_type rtype,
262 enum wpa_ctrl_req_type rtype, const char *default_txt)
260 wpas_dbus_signal_network_request( struct wpa_supplicant *wpa_s, struct wpa_ssid *ssid, enum wpa_ctrl_req_type rtype, const char *default_txt) argument
H A Ddbus_new.c475 * @rtype: The specific additional information required
483 enum wpa_ctrl_req_type rtype,
498 field = wpa_supplicant_ctrl_req_to_string(rtype, default_txt, &txt);
481 wpas_dbus_signal_network_request(struct wpa_supplicant *wpa_s, struct wpa_ssid *ssid, enum wpa_ctrl_req_type rtype, const char *default_txt) argument
/external/webkit/Source/WebCore/bridge/qt/
H A Dqt_runtime.cpp1191 int rtype = QMetaType::type(returnTypeName); local
1192 if ((rtype == 0) && !returnTypeName.isEmpty()) {
1210 types.append(QtMethodMatchType::metaType(rtype, returnTypeName));
/external/skia/src/core/
H A DSkDraw.cpp686 RectType rtype; local
698 rtype = kPath_RectType;
700 rtype = kFill_RectType;
702 rtype = kHair_RectType;
704 rtype = kStroke_RectType;
706 rtype = kPath_RectType;
708 return rtype;
725 RectType rtype = ComputeRectType(paint, *fMatrix, &strokeSize); local
728 if (kStroke_RectType == rtype && paint.isAntiAlias()) {
729 rtype
[all...]
/external/clang/lib/CodeGen/
H A DCGClass.cpp1224 const RecordType *rtype = type->castAs<RecordType>(); local
1225 const CXXRecordDecl *record = cast<CXXRecordDecl>(rtype->getDecl());
/external/mdnsresponder/mDNSShared/
H A Duds_daemon.c4189 mDNSlocal char *RecordTypeName(mDNSu8 rtype) argument
4191 switch (rtype)
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.pde.api.tools_1.0.202.v20100820_r361.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.jdt.debug_3.6.1.v20100715_r361/
H A Djdimodel.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 1797 milliseconds