Searched refs:typ (Results 1 - 25 of 90) sorted by relevance

1234

/macosx-10.9.5/ncurses-42/ncurses/form/
H A Dfld_ftchoice.c40 | FIELDTYPE *typ,
50 set_fieldtype_choice(FIELDTYPE *typ, argument
54 T((T_CALLED("set_fieldtype_choice(%p,%p,%p)"), typ, next_choice, prev_choice));
56 if (!typ || !next_choice || !prev_choice)
59 typ->status |= _HAS_CHOICE;
60 typ->next = next_choice;
61 typ->prev = prev_choice;
H A Dfld_arg.c40 | FIELDTYPE *typ,
64 set_fieldtype_arg(FIELDTYPE *typ, argument
70 typ, make_arg, copy_arg, free_arg));
72 if (typ != 0 && make_arg != (void *)0)
74 typ->status |= _HAS_ARGS;
75 typ->makearg = make_arg;
76 typ->copyarg = copy_arg;
77 typ->freearg = free_arg;
H A Dfrm_hook.c38 #define GEN_HOOK_SET_FUNCTION( typ, name ) \
39 NCURSES_IMPEXP int NCURSES_API set_ ## typ ## _ ## name (FORM *form, Form_Hook func)\
41 T((T_CALLED("set_" #typ"_"#name"(%p,%p)"), form, func));\
42 (Normalize_Form( form ) -> typ ## name) = func ;\
47 #define GEN_HOOK_GET_FUNCTION( typ, name ) \
48 NCURSES_IMPEXP Form_Hook NCURSES_API typ ## _ ## name ( const FORM *form )\
50 T((T_CALLED(#typ "_" #name "(%p)"), form));\
51 returnFormHook( Normalize_Form( form ) -> typ ## name );\
H A Dfld_newftyp.c102 | Function : int free_fieldtype(FIELDTYPE *typ)
111 free_fieldtype(FIELDTYPE *typ) argument
113 T((T_CALLED("free_fieldtype(%p)"), typ));
115 if (!typ)
118 if (typ->ref != 0)
121 if (typ->status & _RESIDENT)
124 if (typ->status & _LINKED_TYPE)
126 if (typ->left)
127 typ->left->ref--;
128 if (typ
[all...]
H A Dfld_def.c74 | const FIELDTYPE *typ,
86 _nc_Make_Argument(const FIELDTYPE *typ, va_list *ap, int *err) argument
91 if (typ != 0 && (typ->status & _HAS_ARGS) != 0)
94 if ((typ->status & _LINKED_TYPE) != 0)
100 p->left = _nc_Make_Argument(typ->left, ap, err);
101 p->right = _nc_Make_Argument(typ->right, ap, err);
111 assert(typ->makearg != (void *)0);
112 if (!(res = (TypeArgument *)typ->makearg(ap)))
123 | Function : TypeArgument *_nc_Copy_Argument(const FIELDTYPE *typ,
134 _nc_Copy_Argument(const FIELDTYPE *typ, const TypeArgument *argp, int *err) argument
183 _nc_Free_Argument(const FIELDTYPE *typ, TypeArgument *argp) argument
[all...]
/macosx-10.9.5/ksh-20/ksh/src/lib/libast/string/
H A Dstrperm.c47 register int typ; local
64 op = num = who = typ = 0;
107 typ |= S_IRUSR|S_IRGRP|S_IROTH;
110 typ |= S_IWUSR|S_IWGRP|S_IWOTH;
117 typ |= S_IXUSR|S_IXGRP|S_IXOTH;
120 typ |= S_ISUID|S_ISGID;
123 typ |= S_ISVTX;
132 typ |= S_ISGID;
143 typ &= who;
158 typ
[all...]
/macosx-10.9.5/CPANInternal-140/SOAP-Lite-0.69/examples/COM/
H A Dremote.cs12 Type typ = Type.GetTypeFromProgID("SOAP.Lite");
13 object obj = Activator.CreateInstance(typ);
14 object soaplite = typ.InvokeMember("new",BindingFlags.InvokeMethod,null,obj,null);
19 typ.InvokeMember("uri",BindingFlags.InvokeMethod,null,soaplite,uri);
20 typ.InvokeMember("proxy",BindingFlags.InvokeMethod,null,soaplite,proxy);
24 object resultObject = typ.InvokeMember("echoString",BindingFlags.InvokeMethod,null,soaplite,input);
25 Console.WriteLine(typ.InvokeMember("result",BindingFlags.InvokeMethod,null,resultObject,null));
/macosx-10.9.5/CPANInternal-140/SOAP-Lite-0.715/examples/COM/
H A Dremote.cs12 Type typ = Type.GetTypeFromProgID("SOAP.Lite");
13 object obj = Activator.CreateInstance(typ);
14 object soaplite = typ.InvokeMember("new",BindingFlags.InvokeMethod,null,obj,null);
19 typ.InvokeMember("uri",BindingFlags.InvokeMethod,null,soaplite,uri);
20 typ.InvokeMember("proxy",BindingFlags.InvokeMethod,null,soaplite,proxy);
24 object resultObject = typ.InvokeMember("echoString",BindingFlags.InvokeMethod,null,soaplite,input);
25 Console.WriteLine(typ.InvokeMember("result",BindingFlags.InvokeMethod,null,resultObject,null));
/macosx-10.9.5/CPANInternal-140/SOAP-Lite_new/examples/COM/
H A Dremote.cs12 Type typ = Type.GetTypeFromProgID("SOAP.Lite");
13 object obj = Activator.CreateInstance(typ);
14 object soaplite = typ.InvokeMember("new",BindingFlags.InvokeMethod,null,obj,null);
19 typ.InvokeMember("uri",BindingFlags.InvokeMethod,null,soaplite,uri);
20 typ.InvokeMember("proxy",BindingFlags.InvokeMethod,null,soaplite,proxy);
24 object resultObject = typ.InvokeMember("echoString",BindingFlags.InvokeMethod,null,soaplite,input);
25 Console.WriteLine(typ.InvokeMember("result",BindingFlags.InvokeMethod,null,resultObject,null));
/macosx-10.9.5/ncurses-42/ncurses/menu/
H A Dm_hook.c43 #define GEN_HOOK_SET_FUNCTION( typ, name ) \
44 NCURSES_IMPEXP int NCURSES_API set_ ## typ ## _ ## name (MENU *menu, Menu_Hook func )\
46 T((T_CALLED("set_" #typ "_" #name "(%p,%p)"), menu, func));\
47 (Normalize_Menu(menu) -> typ ## name = func );\
52 #define GEN_HOOK_GET_FUNCTION( typ, name ) \
53 NCURSES_IMPEXP Menu_Hook NCURSES_API typ ## _ ## name ( const MENU *menu )\
55 T((T_CALLED(#typ "_" #name "(%p)"), menu));\
56 returnMenuHook(Normalize_Menu(menu) -> typ ## name);\
/macosx-10.9.5/dtrace-118.1/libdwarf/
H A Dpro_alloc.c59 dwarf_p_dealloc(void *space, Dwarf_Unsigned typ) argument
/macosx-10.9.5/ppp-727.90.1/Drivers/PPPoE/PPPoE-extension/
H A Dpppoe_dlil.h33 int pppoe_dlil_output(ifnet_t ifp, mbuf_t m, u_int8_t *to, u_int16_t typ);
/macosx-10.9.5/pyobjc-42/2.5/pyobjc/pyobjc-core/Examples/NonFunctional/RemotePyInterpreter/
H A Dremote_pipe.py4 typ = type(s)
5 if typ is unicode:
7 elif issubclass(typ, unicode):
9 elif issubclass(typ, str):
12 raise TypeError, 'expecting basestring, not %s' % (typ.__name__,)
17 typ = type(s)
18 if typ is str:
20 elif issubclass(typ, str):
22 elif issubclass(typ, unicode):
25 raise TypeError, 'expecting basestring, not %s' % (typ
[all...]
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-core/Examples/NonFunctional/RemotePyInterpreter/
H A Dremote_pipe.py4 typ = type(s)
5 if typ is unicode:
7 elif issubclass(typ, unicode):
9 elif issubclass(typ, str):
12 raise TypeError, 'expecting basestring, not %s' % (typ.__name__,)
17 typ = type(s)
18 if typ is str:
20 elif issubclass(typ, str):
22 elif issubclass(typ, unicode):
25 raise TypeError, 'expecting basestring, not %s' % (typ
[all...]
/macosx-10.9.5/CPANInternal-140/IO-Socket-SSL/t/
H A Dverify_hostname.t72 my ($typ,$text) = splice(@want,0,2);
73 my $data = ($typ == GEN_IPADD() ) ? inet_aton($text):$text;
75 $th == $typ and $dh eq $data or print "not ";
102 for my $typ (qw( smtp ldap www)) {
103 my $is = $client->verify_hostname( $host, $typ ) ? 'pass':'fail';
104 my $want = $expect{$typ} ? 'pass':'fail';
106 ok( "$want $host $typ" );
/macosx-10.9.5/bash-92/bash-3.2/lib/sh/
H A Dnetopen.c157 _netopen4(host, serv, typ)
159 int typ;
173 if (_getserv(serv, typ, &p) == 0)
185 s = socket(AF_INET, (typ == 't') ? SOCK_STREAM : SOCK_DGRAM, 0);
212 _netopen6 (host, serv, typ)
214 int typ;
227 hints.ai_socktype = (typ == 't') ? SOCK_STREAM : SOCK_DGRAM;
277 _netopen(host, serv, typ)
279 int typ;
282 return (_netopen6 (host, serv, typ));
[all...]
/macosx-10.9.5/lsof-52/lsof/tests/
H A DLTbasic.c189 LTfldo_t *typ; /* file type pointer */ local
307 devp = inop = rdevp = typ = (LTfldo_t *)NULL;
321 typ = fop;
343 && typ
344 && (!strcasecmp(typ->v, "DIR") || !strcasecmp(typ->v, "VDIR"))
374 && typ
375 && (!strcasecmp(typ->v, "CHR") || !strcasecmp(typ->v, "VCHR"))
407 && typ
[all...]
H A DLTdnlc.c298 LTfldo_t *typ; /* file type pointer */ local
360 devp = inop = nmp = typ = (LTfldo_t *)NULL;
373 typ = fop;
380 if (!devp || !inop || !nmp || !typ)
382 if (strcasecmp(typ->v, "dir") && strcasecmp(typ->v, "vdir"))
H A DLTunix.c237 LTfldo_t *typ; /* file type pointer */ local
315 nmp = typ = (LTfldo_t *)NULL;
322 typ = fop;
329 if (!typ || strcasecmp(typ->v, "unix"))
/macosx-10.9.5/tcl-102/tcl_ext/mk4tcl/metakit/python/
H A DPyProperty.cpp83 PWOString typ(args[0]);
85 return new PyProperty(*(const char*)typ, nam);
/macosx-10.9.5/apache-786.1/httpd/docs/manual/style/css/
H A Dprettify.css10 .typ { color: #404 } /* a type name */
26 .typ { color: #404; font-weight: bold }
84 .lang-c .typ { color: #808 } /* a type name */
103 .lang-lua .typ { color: #808 } /* a type name */
121 .lang-perl .typ { color: #808 } /* a type name *
/macosx-10.9.5/OpenSSH-186/osslshim/ossl-asn1/
H A Dcs-tasn-new.c341 ASN1_TYPE *typ; local
373 typ = malloc(sizeof(ASN1_TYPE));
374 if (!typ)
376 typ->value.ptr = NULL;
377 typ->type = -1;
378 *pval = (ASN1_VALUE *)typ;
H A Dcs-tasn-fre.c252 ASN1_TYPE *typ = (ASN1_TYPE *)*pval; local
253 utype = typ->type;
254 pval = &typ->value.asn1_value;
/macosx-10.9.5/Security-55471.14.18/include/security_utilities/
H A Dmach++.h101 { mach_port_type_t typ; check(mach_port_type(self(), mPort, &typ)); return typ; } local
103 bool isType(mach_port_type_t typ) const { return type() & typ; }
/macosx-10.9.5/Security-55471.14.18/libsecurity_utilities/lib/
H A Dmach++.h101 { mach_port_type_t typ; check(mach_port_type(self(), mPort, &typ)); return typ; } local
103 bool isType(mach_port_type_t typ) const { return type() & typ; }

Completed in 601 milliseconds

1234