HomeSort by relevance Sort by last modified time
    Searched full:wrap (Results 101 - 125 of 970) sorted by null

1 2 3 45 6 7 8 91011>>

  /hardware/ti/wlan/wl1271/stad/src/Connection_Managment/
admCtrlWpa.c 127 /* STA WRAP */ { TI_NOK, TWD_CIPHER_NONE, TWD_CIPHER_NONE ,0},
134 /* STA WRAP */ { TI_NOK, TWD_CIPHER_NONE, TWD_CIPHER_NONE ,0},
141 /* STA WRAP */ { TI_NOK, TWD_CIPHER_NONE, TWD_CIPHER_NONE ,0},
144 /* AP multicast WRAP */ {
148 /* STA WRAP */ { TI_OK, TWD_CIPHER_NONE, TWD_CIPHER_AES_WRAP ,3},
155 /* STA WRAP */ { TI_NOK, TWD_CIPHER_NONE, TWD_CIPHER_NONE ,0},
162 /* STA WRAP */ { TI_NOK, TWD_CIPHER_NONE, TWD_CIPHER_NONE ,0},
170 /* STA WRAP */ { TI_NOK, TWD_CIPHER_NONE, TWD_CIPHER_NONE ,0},
177 /* STA WRAP */ { TI_NOK, TWD_CIPHER_NONE, TWD_CIPHER_NONE ,0},
187 /* AP multicast WRAP */ {
    [all...]
  /system/wlan/ti/sta_dk_4_0_4_32/common/src/core/rsn/
admCtrlWpa.c 142 /* STA WRAP */ { NOK, RSN_CIPHER_NONE, RSN_CIPHER_NONE ,0},
149 /* STA WRAP */ { NOK, RSN_CIPHER_NONE, RSN_CIPHER_NONE ,0},
156 /* STA WRAP */ { NOK, RSN_CIPHER_NONE, RSN_CIPHER_NONE ,0},
159 /* AP multicast WRAP */ {
163 /* STA WRAP */ { OK, RSN_CIPHER_NONE, RSN_CIPHER_AES_WRAP ,3},
170 /* STA WRAP */ { NOK, RSN_CIPHER_NONE, RSN_CIPHER_NONE ,0},
177 /* STA WRAP */ { NOK, RSN_CIPHER_NONE, RSN_CIPHER_NONE ,0},
185 /* STA WRAP */ { NOK, RSN_CIPHER_NONE, RSN_CIPHER_NONE ,0},
192 /* STA WRAP */ { NOK, RSN_CIPHER_NONE, RSN_CIPHER_NONE ,0},
202 /* AP multicast WRAP */ {
    [all...]
  /system/wlan/ti/wilink_6_1/stad/src/Connection_Managment/
admCtrlWpa.c 127 /* STA WRAP */ { TI_NOK, TWD_CIPHER_NONE, TWD_CIPHER_NONE ,0},
134 /* STA WRAP */ { TI_NOK, TWD_CIPHER_NONE, TWD_CIPHER_NONE ,0},
141 /* STA WRAP */ { TI_NOK, TWD_CIPHER_NONE, TWD_CIPHER_NONE ,0},
144 /* AP multicast WRAP */ {
148 /* STA WRAP */ { TI_OK, TWD_CIPHER_NONE, TWD_CIPHER_AES_WRAP ,3},
155 /* STA WRAP */ { TI_NOK, TWD_CIPHER_NONE, TWD_CIPHER_NONE ,0},
162 /* STA WRAP */ { TI_NOK, TWD_CIPHER_NONE, TWD_CIPHER_NONE ,0},
170 /* STA WRAP */ { TI_NOK, TWD_CIPHER_NONE, TWD_CIPHER_NONE ,0},
177 /* STA WRAP */ { TI_NOK, TWD_CIPHER_NONE, TWD_CIPHER_NONE ,0},
187 /* AP multicast WRAP */ {
    [all...]
  /dalvik/libcore/nio/src/test/java/org/apache/harmony/nio/tests/java/nio/channels/
DatagramChannelTest.java 449 targetBuf[0] = ByteBuffer.wrap(new byte[2]);
450 targetBuf[1] = ByteBuffer.wrap(new byte[2]);
482 targetBuf[0] = ByteBuffer.wrap(new byte[2]);
483 targetBuf[1] = ByteBuffer.wrap(new byte[2]);
    [all...]
  /packages/wallpapers/Basic/src/com/android/wallpaper/galaxy/
GalaxyRS.java 32 import static android.renderscript.Sampler.Value.WRAP;
233 samplerBuilder.setWrapS(WRAP);
234 samplerBuilder.setWrapT(WRAP);
247 samplerBuilder.setWrapS(WRAP);
248 samplerBuilder.setWrapT(WRAP);
  /dalvik/libcore/sql/src/test/java/tests/sql/
ResultSetTest.java 134 @KnownFailure("res.close() does not wrap up")
172 @KnownFailure("statment.close() does not wrap up")
231 @KnownFailure("Resultset.close() does not wrap up")
345 @KnownFailure("statment.close() does not wrap up")
376 @KnownFailure("statment.close() does not wrap up")
415 "close() does not wrap up")
454 @KnownFailure("statment.close() does not wrap up")
495 "statment.close() does not wrap up")
536 @KnownFailure("statment.close() does not wrap up")
568 @KnownFailure("Resultset.close() does not wrap up"
    [all...]
  /dalvik/libcore/x-net/src/main/java/javax/net/ssl/
SSLEngine.java 80 * called by {@code wrap} or {@code unwrap} if the initial handshake has not
359 public abstract SSLEngineResult wrap(ByteBuffer[] srcs, int offset, int length, ByteBuffer dst) method in class:SSLEngine
434 public SSLEngineResult wrap(ByteBuffer[] srcs, ByteBuffer dst) throws SSLException { method in class:SSLEngine
438 return wrap(srcs, 0, srcs.length, dst);
461 public SSLEngineResult wrap(ByteBuffer src, ByteBuffer dst) throws SSLException { method in class:SSLEngine
462 return wrap(new ByteBuffer[] { src }, 0, 1, dst);
  /external/bison/tests/
torture.at 90 use Text::Wrap;
91 print wrap ("| ", " ",
190 use Text::Wrap;
192 wrap ("exp: ", " ",
269 use Text::Wrap;
293 wrap ("%type <val> ",
  /dalvik/libcore/x-net/src/main/java/org/apache/harmony/xnet/provider/jsse/
AlertProtocol.java 136 // record protocol to be used to wrap the alerts
271 protected byte[] wrap() { method in class:AlertProtocol
272 byte[] res = recordProtocol.wrap(ContentType.ALERT, alert, 0, 2);
  /external/skia/include/core/
SkMath.h 80 Note: only works as long as max - value doesn't wrap around
88 // ensure that if value is negative, max - value doesn't wrap around
112 Note: only works as long as max - value doesn't wrap around
  /packages/apps/Mms/src/com/android/mms/ui/
RecipientsAdapter.java 205 ArrayList<ArrayList> wrap = new ArrayList<ArrayList>(); local
206 wrap.add(result);
208 ArrayListCursor translated = new ArrayListCursor(PROJECTION_PHONE, wrap);
  /packages/wallpapers/MusicVisualization/src/com/android/musicvis/
GenericWaveRS.java 21 import static android.renderscript.Sampler.Value.WRAP;
199 samplerBuilder.setWrapS(WRAP);
200 samplerBuilder.setWrapT(WRAP);
  /packages/wallpapers/MusicVisualization/src/com/android/musicvis/vis4/
Visualization4RS.java 21 import static android.renderscript.Sampler.Value.WRAP;
137 samplerBuilder.setWrapS(WRAP);
138 samplerBuilder.setWrapT(WRAP);
  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/
HandleNativeHeap.java 131 ByteBuffer buffer = ByteBuffer.wrap(copy);
187 data = ByteBuffer.wrap(dataCopy);
202 ByteBuffer buffer = ByteBuffer.wrap(copy);
  /dalvik/libcore/nio/src/test/java/org/apache/harmony/nio/tests/java/nio/
IntBufferTest.java 132 IntBuffer wrapped = IntBuffer.wrap(array, 3, array.length - 3);
832 * test for method static IntBuffer wrap(int[] array) test covers following
840 method = "wrap",
846 IntBuffer buf2 = IntBuffer.wrap(array);
863 * test for method static IntBuffer wrap(int[] array, int offset, int
872 method = "wrap",
880 IntBuffer buf2 = IntBuffer.wrap(array, offset, length);
899 buf2 = IntBuffer.wrap(array, offset, length);
900 fail("wrap method does not throws expected exception");
LongBufferTest.java 131 LongBuffer wrapped = LongBuffer.wrap(array, 3, array.length - 3);
814 * test for method public static LongBuffer wrap(long[] array) test covers
822 method = "wrap",
828 LongBuffer buf2 = LongBuffer.wrap(array);
845 * test for method public static LongBuffer wrap(long[] array, int offset,
854 method = "wrap",
862 LongBuffer buf2 = LongBuffer.wrap(array, offset, length);
881 buf2 = LongBuffer.wrap(array, offset, length);
882 fail("wrap method does not throws expected exception");
ShortBufferTest.java 131 ShortBuffer wrapped = ShortBuffer.wrap(array, 3, array.length - 3);
825 * test for method static ShortBuffer wrap(short[] array) test covers
833 method = "wrap",
839 ShortBuffer buf2 = ShortBuffer.wrap(array);
856 * test for method static ShortBuffer wrap(short[] array, int offset, int
865 method = "wrap",
873 ShortBuffer buf2 = ShortBuffer.wrap(array, offset, length);
892 buf2 = ShortBuffer.wrap(array, offset, length);
893 fail("wrap method does not throws expected exception");
  /dalvik/libcore/nio_char/src/test/java/tests/api/java/nio/charset/
CharsetDecoderTest.java 545 return ByteBuffer.wrap(new byte[] { 32, 98, 117, 102, 102, 101, 114 });
555 .wrap(new byte[] { 114, 117, 110, 116, 105, 109, 101 });
562 return ByteBuffer.wrap(ba);
569 return ByteBuffer.wrap(ba);
585 ByteBuffer in = ByteBuffer.wrap(new byte[] { 12, 12 });
613 ByteBuffer in = ByteBuffer.wrap(new byte[] { 98, 98 });
674 ByteBuffer in = ByteBuffer.wrap(new byte[] { 98, 98 });
714 ByteBuffer in = ByteBuffer.wrap(new byte[] { 98, 98 });
842 decoder.decode(ByteBuffer.wrap(new byte[]{ 'a','b','c'}));
GBCharsetEncoderTest.java 110 return CharBuffer.wrap("\ud800 buffer");
  /dalvik/libcore/xml/src/main/java/javax/xml/transform/
TransformerConfigurationException.java 84 * Wrap an existing exception in a TransformerConfigurationException.
  /dalvik/libcore/xml/src/main/java/org/apache/xml/dtm/
DTMConfigurationException.java 87 * Wrap an existing exception in a DTMConfigurationException.
  /dalvik/tools/dexdeps/
Android.mk 19 # .jar files they wrap.
  /external/webkit/WebCore/bindings/objc/
ObjCEventListener.mm 50 PassRefPtr<ObjCEventListener> ObjCEventListener::wrap(id <DOMEventListener> listener)
  /external/webkit/WebCore/bindings/v8/custom/
V8BarInfoCustom.cpp 45 wrapper = V8BarInfo::wrap(impl);
V8CSSRuleCustom.cpp 70 return V8CSSRule::wrap(impl);

Completed in 219 milliseconds

1 2 3 45 6 7 8 91011>>