Searched refs:cls (Results 1 - 25 of 91) sorted by relevance

1234

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/bind/tuple/
H A DTupleMarshalledBinding.java25 private Class cls; field in class:TupleMarshalledBinding
35 * @param cls is the class of the key or data objects.
37 public TupleMarshalledBinding(Class cls) { argument
39 this.cls = cls;
42 if (!MarshalledTupleEntry.class.isAssignableFrom(cls)) {
43 throw new IllegalArgumentException(cls.toString() +
53 (MarshalledTupleEntry) cls.newInstance();
H A DTupleTupleMarshalledBinding.java28 private Class cls; field in class:TupleTupleMarshalledBinding
39 * @param cls is the class of the entity objects.
41 public TupleTupleMarshalledBinding(Class cls) { argument
43 this.cls = cls;
47 if (!MarshalledTupleKeyEntity.class.isAssignableFrom(cls)) {
48 throw new IllegalArgumentException(cls.toString() +
51 if (!MarshalledTupleEntry.class.isAssignableFrom(cls)) {
52 throw new IllegalArgumentException(cls.toString() +
64 obj = (MarshalledTupleEntry) cls
[all...]
H A DTupleBinding.java123 * @param cls is the primitive Java class.
125 * @return a new binding for the primitive class or null if the cls
128 public static TupleBinding getPrimitiveBinding(Class cls) { argument
130 return (TupleBinding) primitives.get(cls);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/base/
H A Dsys.c136 int sysdev_class_register(struct sysdev_class * cls) argument
139 kobject_name(&cls->kset.kobj));
140 INIT_LIST_HEAD(&cls->drivers);
141 cls->kset.kobj.parent = &system_subsys.kobj;
142 kset_set_kset_s(cls, system_subsys);
143 return kset_register(&cls->kset);
146 void sysdev_class_unregister(struct sysdev_class * cls) argument
149 kobject_name(&cls->kset.kobj));
150 kset_unregister(&cls->kset);
162 * @cls
172 sysdev_driver_register(struct sysdev_class * cls, struct sysdev_driver * drv) argument
197 sysdev_driver_unregister(struct sysdev_class * cls, struct sysdev_driver * drv) argument
226 struct sysdev_class * cls = sysdev->cls; local
307 struct sysdev_class * cls; local
345 struct sysdev_class *cls = dev->cls; local
380 struct sysdev_class * cls; local
482 struct sysdev_class * cls; local
[all...]
H A Dclass.c77 int class_create_file(struct class * cls, const struct class_attribute * attr) argument
80 if (cls) {
81 error = sysfs_create_file(&cls->subsys.kobj, &attr->attr);
87 void class_remove_file(struct class * cls, const struct class_attribute * attr) argument
89 if (cls)
90 sysfs_remove_file(&cls->subsys.kobj, &attr->attr);
93 static struct class *class_get(struct class *cls) argument
95 if (cls)
96 return container_of(subsys_get(&cls->subsys), struct class, subsys);
100 static void class_put(struct class * cls) argument
107 add_class_attrs(struct class * cls) argument
127 remove_class_attrs(struct class * cls) argument
137 class_register(struct class * cls) argument
162 class_unregister(struct class * cls) argument
169 class_create_release(struct class *cls) argument
203 struct class *cls; local
235 class_destroy(struct class *cls) argument
311 struct class * cls = cd->class; local
487 struct class * cls = cd->class; local
508 struct class * cls = cd->class; local
717 class_device_create(struct class *cls, struct class_device *parent, dev_t devt, struct device *device, const char *fmt, ...) argument
806 class_device_destroy(struct class *cls, dev_t devt) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/cifs/
H A Dasn1.c139 unsigned int *cls, unsigned int *con, unsigned int *tag)
146 *cls = (ch & 0xC0) >> 6;
191 unsigned int *cls, unsigned int *con, unsigned int *tag)
196 if (!asn1_id_decode(ctx, cls, con, tag))
459 unsigned int cls, con, tag, oidlen, rc; local
468 if (asn1_header_decode(&ctx, &end, &cls, &con, &tag) == 0) {
471 } else if ((cls != ASN1_APL) || (con != ASN1_CON)
473 cFYI(1, ("cls = %d con = %d tag = %d", cls, con, tag));
477 rc = asn1_header_decode(&ctx, &end, &cls,
138 asn1_id_decode(struct asn1_ctx *ctx, unsigned int *cls, unsigned int *con, unsigned int *tag) argument
189 asn1_header_decode(struct asn1_ctx *ctx, unsigned char **eoc, unsigned int *cls, unsigned int *con, unsigned int *tag) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/persist/impl/
H A DFieldInfo.java38 static List<FieldInfo> getInstanceFields(Class cls) { argument
39 Field[] declaredFields = cls.getDeclaredFields();
73 private transient Class cls; field in class:FieldInfo
77 cls = field.getType();
78 className = cls.getName();
83 format = catalog.createFormat(cls, newFormats);
99 if (cls == null) {
101 cls = SimpleCatalog.classForName(className);
106 return cls;
H A DSimpleCatalog.java73 Class cls = primitiveTypeToWrapper.get(type);
74 if (cls == null) {
77 return cls;
81 Class cls = keywordToPrimitive.get(className);
82 if (cls != null) {
83 cls = primitiveTypeToWrapper.get(cls);
86 cls = EntityModel.classForName(className);
92 return cls;
96 Class cls
228 getFormat(Class cls) argument
[all...]
H A DPersistKeyBinding.java53 PersistKeyBinding(Class cls, String[] compositeFieldOrder) { argument
56 assert !SimpleCatalog.isSimpleType(cls);
57 keyFormat = new CompositeKeyFormat(cls, null, compositeFieldOrder);
59 assert SimpleCatalog.isSimpleType(cls);
60 keyFormat = catalog.getFormat(cls);
H A DReadOnlyCatalog.java55 public Format getFormat(Class cls) { argument
56 Format format = formatMap.get(cls.getName());
59 ("Class is not persistent: " + cls.getName());
H A DCatalog.java67 Format getFormat(Class cls); argument
H A DCompositeKeyFormat.java79 CompositeKeyFormat(Class cls, argument
82 this(cls, metadata, getFieldNameArray(fieldNames));
85 CompositeKeyFormat(Class cls, argument
88 super(cls);
92 Class superCls = cls.getSuperclass();
96 cls.getName());
100 List<FieldInfo> instanceFields = FieldInfo.getInstanceFields(cls);
H A DObjectArrayFormat.java69 Class cls = getType().getComponentType();
70 catalog.createFormat(cls, newFormats);
77 Class cls = getType().getComponentType();
78 componentFormat = catalog.getFormat(cls.getName());
H A DEnumFormat.java64 Class cls = getType();
65 if (cls != null) {
68 values[i] = Enum.valueOf(cls, names[i]);
H A DPersistKeyCreator.java36 static boolean isManyType(Class cls) { argument
37 return cls.isArray() || Collection.class.isAssignableFrom(cls);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/linux/
H A Dtransport_class.h27 #define DECLARE_TRANSPORT_CLASS(cls, nm, su, rm, cfg) \
28 struct transport_class cls = { \
43 #define DECLARE_ANON_TRANSPORT_CLASS(cls, mtch, cfg) \
44 struct anon_transport_class cls = { \
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/arm/mach-s3c2442/
H A Ds3c2442.c26 .cls = &s3c2442_sysclass,
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/persist/evolve/
H A DConverter.java77 Class cls = conversion.getClass();
79 Method m = cls.getMethod("equals", Object.class);
84 cls.getName());
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/net/ipv4/netfilter/
H A Dnf_nat_snmp_basic.c185 unsigned int *cls,
194 *cls = (ch & 0xC0) >> 6;
239 unsigned int *cls,
245 if (!asn1_id_decode(ctx, cls, con, tag))
643 unsigned int cls,
651 if (cnv->tag == tag && cnv->class == cls) {
663 unsigned int cls, con, tag, len, idlen; local
673 if (!asn1_header_decode(ctx, &eoc, &cls, &con, &tag))
676 if (cls != ASN1_UNI || con != ASN1_CON || tag != ASN1_SEQ)
679 if (!asn1_header_decode(ctx, &end, &cls,
184 asn1_id_decode(struct asn1_ctx *ctx, unsigned int *cls, unsigned int *con, unsigned int *tag) argument
237 asn1_header_decode(struct asn1_ctx *ctx, unsigned char **eoc, unsigned int *cls, unsigned int *con, unsigned int *tag) argument
642 snmp_tag_cls2syntax(unsigned int tag, unsigned int cls, unsigned short *syntax) argument
835 unsigned int cls, con, tag; local
928 unsigned int cls, con, tag, len; local
1023 unsigned int cls, con, tag, vers, pdutype; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/persist/model/
H A DAnnotationModel.java209 Class cls = field.getType();
210 if (cls.isArray()) {
211 return cls.getComponentType().getName();
213 if (java.util.Collection.class.isAssignableFrom(cls)) {
321 Class cls;
323 cls = EntityModel.classForName(data.getClassName());
327 cls = cls.getSuperclass();
328 if (cls != Object.class) {
329 data = getClassMetadata(cls
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/test/scr024/src/com/sleepycat/bind/test/
H A DBindingSpeedTest.java304 Class cls = Data.class;
307 getters[0] = cls.getMethod("getField1", new Class[0]);
308 getters[1] = cls.getMethod("getField2", new Class[0]);
309 getters[2] = cls.getMethod("getField3", new Class[0]);
310 getters[3] = cls.getMethod("getField4", new Class[0]);
311 getters[4] = cls.getMethod("getField5", new Class[0]);
314 setters[0] = cls.getMethod("setField1", new Class[] {String.class});
315 setters[1] = cls.getMethod("setField2", new Class[] {String.class});
316 setters[2] = cls.getMethod("setField3", new Class[] {Integer.TYPE});
317 setters[3] = cls
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/powerpc/sysdev/
H A Dtimer.c60 .cls = &timer_sysclass,
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/arm/mach-s3c2440/
H A Ds3c2440.c37 .cls = &s3c2440_sysclass,
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/i386/kernel/
H A Di8237.c61 .cls = &i8237_sysdev_class,
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/test/scr024/src/com/sleepycat/collections/test/
H A DDbTestUtil.java102 public static boolean copyResource(Class cls, String fileName, File toDir) argument
105 InputStream in = cls.getResourceAsStream("testdata/" + fileName);

Completed in 126 milliseconds

1234