HomeSort by relevance Sort by last modified time
    Searched refs:mode (Results 226 - 250 of 3202) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/linux/
proc_fs.h 38 mode_t mode; member in struct:proc_dir_entry
73 #define proc_net_fops_create(name, mode, fops) ({ (void)(mode), NULL; })
74 #define proc_net_create(name, mode, info) ({ (void)(mode), NULL; })
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/linux/
proc_fs.h 38 mode_t mode; member in struct:proc_dir_entry
73 #define proc_net_fops_create(name, mode, fops) ({ (void)(mode), NULL; })
74 #define proc_net_create(name, mode, info) ({ (void)(mode), NULL; })
  /prebuilt/ndk/android-ndk-r5/platforms/android-3/arch-arm/usr/include/linux/
proc_fs.h 38 mode_t mode; member in struct:proc_dir_entry
73 #define proc_net_fops_create(name, mode, fops) ({ (void)(mode), NULL; })
74 #define proc_net_create(name, mode, info) ({ (void)(mode), NULL; })
  /prebuilt/ndk/android-ndk-r6/platforms/android-3/arch-arm/usr/include/linux/
proc_fs.h 38 mode_t mode; member in struct:proc_dir_entry
73 #define proc_net_fops_create(name, mode, fops) ({ (void)(mode), NULL; })
74 #define proc_net_create(name, mode, info) ({ (void)(mode), NULL; })
  /prebuilt/ndk/android-ndk-r6/platforms/android-3/arch-x86/usr/include/linux/
proc_fs.h 38 mode_t mode; member in struct:proc_dir_entry
73 #define proc_net_fops_create(name, mode, fops) ({ (void)(mode), NULL; })
74 #define proc_net_create(name, mode, info) ({ (void)(mode), NULL; })
  /ndk/sources/host-tools/sed-4.2.1/lib/
copy-acl.c 35 MODE. Also sets the non-permission bits of the destination file
36 (S_ISUID, S_ISGID, S_ISVTX) to those from MODE if any are set.
43 int dest_desc, mode_t mode)
61 return qset_acl (dst_name, dest_desc, mode);
77 return chmod_or_fchmod (dst_name, dest_desc, mode);
82 chmod_or_fchmod (dst_name, dest_desc, mode);
90 if (mode & (S_ISUID | S_ISGID | S_ISVTX))
92 /* We did not call chmod so far, and either the mode and the ACL are
95 if (chmod_or_fchmod (dst_name, dest_desc, mode) != 0)
99 if (S_ISDIR (mode))
    [all...]
  /system/core/toolbox/
ls.c 32 static char mode2kind(unsigned mode)
34 switch(mode & S_IFMT){
46 static void mode2str(unsigned mode, char *out)
48 *out++ = mode2kind(mode);
50 *out++ = (mode & 0400) ? 'r' : '-';
51 *out++ = (mode & 0200) ? 'w' : '-';
52 if(mode & 04000) {
53 *out++ = (mode & 0100) ? 's' : 'S';
55 *out++ = (mode & 0100) ? 'x' : '-';
57 *out++ = (mode & 040) ? 'r' : '-'
165 char mode[16]; local
    [all...]
  /libcore/luni/src/main/java/javax/crypto/
Cipher.java 45 * <li><i>"algorithm/mode/padding"</i></li> or
48 * <i>algorithm</i> is the name of a cryptographic algorithm, <i>mode</i> is the
49 * name of a feedback mode and <i>padding</i> is the name of a padding scheme.
50 * If <i>mode</i> and/or <i>padding</i> values are omitted, provider specific
57 * When a block cipher is requested in in stream cipher mode, the number of bits
59 * mode name. e.g. <i>"AES/CFB8/NoPadding"</i>. If no number is specified, a
65 * Constant for decryption operation mode.
70 * Constant for encryption operation mode.
90 * Constant for key unwrapping operation mode.
95 * Constant for key wrapping operation mode
99 private int mode; field in class:Cipher
    [all...]
  /development/tools/emulator/opengl/host/libs/Translator/include/GLcommon/
GLESvalidate.h 29 static bool drawMode(GLenum mode);
30 static bool drawType(GLenum mode);
35 static bool blendEquationMode(GLenum mode);
  /external/qemu/distrib/sdl-1.2.12/src/video/bwindow/
SDL_syswm.cc 41 SDL_GrabMode BE_GrabInput(_THIS, SDL_GrabMode mode)
43 if ( mode == SDL_GRAB_OFF ) {
47 must be leaving relative mode, move mouse from
63 must be entering relative mode, get ready by
74 return(mode);
  /external/skia/include/effects/
SkGradientShader.h 45 @param mode The tiling mode
50 SkShader::TileMode mode,
67 @param mode The tiling mode
72 SkShader::TileMode mode,
92 @param mode The tiling mode
101 SkShader::TileMode mode,
  /external/srec/srec/include/
portable.h 55 static PINLINE PFile* file_must_open(PFile* afile, const LCHAR *name, const LCHAR *mode, ESR_BOOL littleEndian)
60 fp = pfopen ( name, mode );
70 PLogError(L("Could not open file %s, mode=%s, cwd=%s\n"), name, mode, tmp);
  /external/v8/test/cctest/
test-reloc-info.cc 36 byte* pc, RelocInfo::Mode mode, intptr_t data) {
37 RelocInfo rinfo(pc, mode, data);
56 RelocInfo::Mode mode = (i % 2 == 0) ? local
58 WriteRinfo(&writer, pc, mode, pos);
71 RelocInfo::Mode mode = (i % 2 == 0) ? local
73 if (mode == RelocInfo::POSITION) {
75 CHECK_EQ(mode, it.rinfo()->rmode())
88 RelocInfo::Mode mode = (i % 2 == 0) ? local
105 RelocInfo::Mode mode = (i % 2 == 0) ? local
    [all...]
  /external/v8/test/test262/
testcfg.py 39 def __init__(self, filename, path, context, root, mode, framework):
40 super(Test262TestCase, self).__init__(context, path, mode)
49 return "%s test262 %s %s" % (self.mode, self.GetGroup(), self.GetName())
57 result = self.context.GetVmCommand(self, self.mode)
78 def AddIETestCenter(self, tests, current_path, path, mode):
95 self.root, mode, harness)
98 def AddSputnikConvertedTests(self, tests, current_path, path, mode):
102 def AddSputnikTests(self, tests, current_path, path, mode):
106 def ListTests(self, current_path, path, mode, variant_flags):
108 self.AddIETestCenter(tests, current_path, path, mode)
    [all...]
  /external/webkit/Source/JavaScriptCore/runtime/
JSVariableObject.cpp 45 void JSVariableObject::getOwnPropertyNames(ExecState* exec, PropertyNameArray& propertyNames, EnumerationMode mode)
49 if (!(it->second.getAttributes() & DontEnum) || (mode == IncludeDontEnumProperties))
53 JSObject::getOwnPropertyNames(exec, propertyNames, mode);
LiteralParser.h 38 LiteralParser(ExecState* exec, const UString& s, ParserMode mode)
40 , m_lexer(s, mode)
41 , m_mode(mode)
72 Lexer(const UString& s, ParserMode mode)
74 , m_mode(mode)
92 template <ParserMode mode> TokenType lexString(LiteralParserToken&);
  /external/webkit/Source/WebCore/loader/appcache/
ManifestParser.cpp 39 enum Mode { Explicit, Fallback, OnlineWhitelist, Unknown };
48 Mode mode = Explicit; local
96 mode = Explicit;
98 mode = Fallback;
100 mode = OnlineWhitelist;
102 mode = Unknown;
103 else if (mode == Unknown)
105 else if (mode == Explicit || mode == OnlineWhitelist)
    [all...]
  /external/webkit/Source/WebCore/websockets/
ThreadableWebSocketChannel.cpp 62 String mode = webSocketChannelMode; local
63 mode.append(String::number(runLoop.createUniqueId()));
64 return WorkerThreadableWebSocketChannel::create(workerContext, client, mode, url, protocol);
  /external/webkit/Source/WebCore/workers/
WorkerRunLoop.cpp 69 ModePredicate(const String& mode)
70 : m_mode(mode)
71 , m_defaultMode(mode == WorkerRunLoop::defaultMode())
82 return m_defaultMode || m_mode == task->mode();
138 MessageQueueWaitResult WorkerRunLoop::runInMode(WorkerContext* context, const String& mode)
141 ModePredicate modePredicate(mode);
185 void WorkerRunLoop::postTaskForMode(PassOwnPtr<ScriptExecutionContext::Task> task, const String& mode)
187 m_messageQueue.append(Task::create(task, mode.crossThreadString()));
190 PassOwnPtr<WorkerRunLoop::Task> WorkerRunLoop::Task::create(PassOwnPtr<ScriptExecutionContext::Task> task, const String& mode)
192 return new Task(task, mode);
    [all...]
  /frameworks/base/media/libstagefright/codecs/amrwb/src/
homing_amr_wb_dec.cpp 52 int16 mode 16-bit mode
63 int16 dhf_test(int16 input_frame[], int16 mode, int16 nparms)
64 int16 decoder_homing_frame_test(int16 input_frame[], int16 mode)
65 int16 decoder_homing_frame_test_first(int16 input_frame[], int16 mode)
127 int16 dhf_test(int16 input_frame[], int32 mode, int16 nparms);
248 int16 dhf_test(int16 input_frame[], int32 mode, int16 nparms)
275 if (mode != MRDTX)
277 if (mode != MODE_24k)
294 /*If mode is 23.85Kbit/s, remove high band energy bits *
    [all...]
  /sdk/ide_common/src/com/android/ide/common/resources/configuration/
NightModeQualifier.java 27 public static final String NAME = "Night Mode";
55 return "Night Mode";
60 NightMode mode = NightMode.getEnum(value); local
61 if (mode != null) {
62 NightModeQualifier qualifier = new NightModeQualifier(mode);
  /bionic/libc/stdio/
setvbuf.c 43 setvbuf(FILE *fp, char *buf, int mode, size_t size)
54 if (mode != _IONBF)
55 if ((mode != _IOFBF && mode != _IOLBF) || (int)size < 0)
76 /* If setting unbuffered mode, skip all the hard work. */
77 if (mode == _IONBF)
130 if (mode == _IOLBF)
  /external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/cert/
MyCertificateFactorySpi.java 46 // mode: false - list of encodings is empty
47 // mode: true - list of encodings consists of 2 elements
49 private static boolean mode; field in class:MyCertificateFactorySpi
55 mode = true;
62 mode = newMode;
114 if (mode) {
124 if (mode) {
132 if (!mode) {
  /external/bluetooth/bluez/audio/
gstsbcutil.c 80 * Selects one allocation mode from the ones on the list
90 * Selects one mode from the ones on the list
161 gint gst_sbc_get_channel_number(gint mode)
163 switch (mode) {
231 const gchar *gst_sbc_parse_mode_from_sbc(gint mode)
233 switch (mode) {
248 gint gst_sbc_parse_mode_to_sbc(const gchar *mode)
250 if (g_ascii_strcasecmp(mode, "joint") == 0)
252 else if (g_ascii_strcasecmp(mode, "stereo") == 0)
254 else if (g_ascii_strcasecmp(mode, "dual") == 0
329 const gchar *mode = NULL; local
486 const gchar *mode; local
    [all...]
  /external/v8/test/preparser/
testcfg.py 37 def __init__(self, root, path, executable, mode, context):
38 super(PreparserTestCase, self).__init__(context, path, mode)
43 return "%s %s %s" % (self.mode, self.path[-2], self.path[-1])
68 def ListTests(self, current_path, path, mode, variant_flags):
69 executable = join('obj', 'preparser', mode, 'preparser')
80 mode, self.context))

Completed in 943 milliseconds

1 2 3 4 5 6 7 8 91011>>