HomeSort by relevance Sort by last modified time
    Searched full:minor (Results 1 - 25 of 801) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/kernel-headers/original/linux/
kdev_t.h 8 #define MINOR(dev) ((unsigned int) ((dev) & MINORMASK))
12 sprintf((buffer), "%u:%u\n", MAJOR(dev), MINOR(dev))
16 sprintf(buffer, "%u:%u", MAJOR(dev), MINOR(dev)); \
23 return MAJOR(dev) < 256 && MINOR(dev) < 256;
28 return (MAJOR(dev) << 8) | MINOR(dev);
44 unsigned minor = MINOR(dev); local
45 return (minor & 0xff) | (major << 8) | ((minor & ~0xff) << 12);
51 unsigned minor = (dev & 0xff) | ((dev >> 12) & 0xfff00) local
    [all...]
miscdevice.h 37 int minor; member in struct:miscdevice
48 #define MODULE_ALIAS_MISCDEV(minor) \
50 "-" __stringify(minor))
  /external/iptables/extensions/
libipt_CLASSIFY.man 3 .BI "--set-class " "MAJOR:MINOR"
4 Set the major and minor class value.
  /external/apache-http/src/org/apache/http/
HttpVersion.java 65 * @param minor the minor version number of the HTTP protocol
67 * @throws IllegalArgumentException if either major or minor version number is negative
69 public HttpVersion(int major, int minor) {
70 super(HTTP, major, minor);
78 * @param minor the minor version
82 public ProtocolVersion forVersion(int major, int minor) {
84 if ((major == this.major) && (minor == this.minor)) {
    [all...]
ProtocolVersion.java 47 * protocol name, major version number, and minor version number.
67 /** Minor version number of the protocol */
68 protected final int minor; field in class:ProtocolVersion
76 * @param minor the minor version number of the protocol
78 public ProtocolVersion(String protocol, int major, int minor) {
87 if (minor < 0) {
89 ("Protocol minor version number may not be negative");
93 this.minor = minor;
    [all...]
  /system/vold/
DirectVolume.cpp 88 int minor = atoi(evt->findParam("MINOR")); local
93 major, minor);
94 if (createDeviceNode(nodepath, major, minor)) {
128 mDiskMinor = atoi(evt->findParam("MINOR"));
168 int minor = atoi(evt->findParam("MINOR")); local
190 SLOGD("Dv:partAdd: part_num = %d, minor = %d\n", part_num, minor);
192 mPartMinors[part_num -1] = minor;
211 int minor = atoi(evt->findParam("MINOR")); local
244 int minor = atoi(evt->findParam("MINOR")); local
250 int minor = atoi(evt->findParam("MINOR")); local
263 int minor = atoi(evt->findParam("MINOR")); local
    [all...]
  /dalvik/dx/tests/003-magic-version-access/
info.txt 8 * major / minor version numbers
class-version-49.1.txt 2 # classfile with a minor version 1 higher than the highest valid
  /external/webkit/WebKit/gtk/webkit/
webkitversion.h.in 34 #define WEBKIT_CHECK_VERSION(major, minor, micro) \
36 (WEBKIT_MAJOR_VERSION == (major) && WEBKIT_MINOR_VERSION > (minor)) || \
37 (WEBKIT_MAJOR_VERSION == (major) && WEBKIT_MINOR_VERSION == (minor) && \
50 webkit_check_version (guint major, guint minor, guint micro);
  /external/bluetooth/bluez/plugins/
hal.c 45 uint8_t cls[3], minor = 0; local
67 minor |= (1 << 2) | (1 << 3);
69 minor |= 1 << 2;
71 minor |= 1 << 3;
73 minor += 1 << 4;
91 debug("Setting 0x%06x for major/minor device class", (1 << 8) | minor);
95 set_major_and_minor_class(adapter, 0x01, minor);
  /bionic/libc/kernel/common/linux/
kdev_t.h 16 #define MINOR(dev) ((dev) & 0xff)
miscdevice.h 48 int minor; member in struct:miscdevice
56 #define MODULE_ALIAS_MISCDEV(minor) MODULE_ALIAS("char-major-" __stringify(MISC_MAJOR) "-" __stringify(minor))
  /ndk/build/platforms/android-3/arch-arm/usr/include/linux/
kdev_t.h 16 #define MINOR(dev) ((dev) & 0xff)
miscdevice.h 48 int minor; member in struct:miscdevice
56 #define MODULE_ALIAS_MISCDEV(minor) MODULE_ALIAS("char-major-" __stringify(MISC_MAJOR) "-" __stringify(minor))
  /ndk/build/platforms/android-4/arch-arm/usr/include/linux/
kdev_t.h 16 #define MINOR(dev) ((dev) & 0xff)
miscdevice.h 48 int minor; member in struct:miscdevice
56 #define MODULE_ALIAS_MISCDEV(minor) MODULE_ALIAS("char-major-" __stringify(MISC_MAJOR) "-" __stringify(minor))
  /ndk/build/platforms/android-5/arch-arm/usr/include/linux/
kdev_t.h 16 #define MINOR(dev) ((dev) & 0xff)
miscdevice.h 48 int minor; member in struct:miscdevice
56 #define MODULE_ALIAS_MISCDEV(minor) MODULE_ALIAS("char-major-" __stringify(MISC_MAJOR) "-" __stringify(minor))
  /ndk/build/platforms/android-5/arch-x86/usr/include/linux/
kdev_t.h 16 #define MINOR(dev) ((dev) & 0xff)
miscdevice.h 48 int minor; member in struct:miscdevice
56 #define MODULE_ALIAS_MISCDEV(minor) MODULE_ALIAS("char-major-" __stringify(MISC_MAJOR) "-" __stringify(minor))
  /ndk/build/platforms/android-8/arch-arm/usr/include/linux/
kdev_t.h 16 #define MINOR(dev) ((dev) & 0xff)
miscdevice.h 48 int minor; member in struct:miscdevice
56 #define MODULE_ALIAS_MISCDEV(minor) MODULE_ALIAS("char-major-" __stringify(MISC_MAJOR) "-" __stringify(minor))
  /ndk/build/platforms/android-8/arch-x86/usr/include/linux/
kdev_t.h 16 #define MINOR(dev) ((dev) & 0xff)
miscdevice.h 48 int minor; member in struct:miscdevice
56 #define MODULE_ALIAS_MISCDEV(minor) MODULE_ALIAS("char-major-" __stringify(MISC_MAJOR) "-" __stringify(minor))
  /cts/tools/dasm/src/java_cup/
version.java 9 * Version numbers used here are broken into 3 parts: major, minor, and
10 * update, and are written as v<major>.<minor><update> (e.g. v0.9a).
12 * part of the system. Minor numbers for each public release or
32 /** The minor version number. */
33 public static final int minor = 9; field in class:version

Completed in 309 milliseconds

1 2 3 4 5 6 7 8 91011>>