/external/wpa_supplicant_8/hs20/server/ |
D | sql-example.txt | 1 INSERT INTO osu_config(realm,field,value) VALUES('example.com','fqdn','example.com'); 2 INSERT INTO osu_config(realm,field,value) VALUES('example.com','friendly_name','Example Operator'); 3 INSERT INTO osu_config(realm,field,value) VALUES('example.com','spp_http_auth_url','https://subscri… 4 INSERT INTO osu_config(realm,field,value) VALUES('example.com','trust_root_cert_url','https://osu-s… 5 INSERT INTO osu_config(realm,field,value) VALUES('example.com','trust_root_cert_fingerprint','5b393… 6 INSERT INTO osu_config(realm,field,value) VALUES('example.com','aaa_trust_root_cert_url','https://o… 7 INSERT INTO osu_config(realm,field,value) VALUES('example.com','aaa_trust_root_cert_fingerprint','5… 8 INSERT INTO osu_config(realm,field,value) VALUES('example.com','free_account','free'); 9 INSERT INTO osu_config(realm,field,value) VALUES('example.com','policy_url','https://subscription-s… 10 INSERT INTO osu_config(realm,field,value) VALUES('example.com','remediation_url','https://subscript… [all …]
|
/external/wpa_supplicant_8/hostapd/ |
D | hostapd.eap_user_sqlite | 15 INSERT INTO users(identity,methods,password,phase2) VALUES ('user','TTLS-MSCHAPV2','password',1); 16 INSERT INTO users(identity,methods,password,phase2) VALUES ('DOMAIN\mschapv2 user','TTLS-MSCHAPV2',… 18 INSERT INTO wildcards(identity,methods) VALUES ('','TTLS,TLS'); 19 INSERT INTO wildcards(identity,methods) VALUES ('0','AKA');
|
D | hlr_auc_gw.txt | 50 INSERT INTO milenage(imsi,ki,opc,amf,sqn) VALUES( 57 INSERT INTO milenage(imsi,ki,opc,amf,sqn) VALUES(
|
/external/oj-libjdwp/src/share/back/ |
D | stepControl.c | 461 JDI_ASSERT(step->depth == JDWP_STEP_DEPTH(INTO)); in handleMethodEnterEvent() 543 if (step->depth == JDWP_STEP_DEPTH(INTO) && in stepControl_handleStep() 578 if ( step->depth == JDWP_STEP_DEPTH(INTO) in stepControl_handleStep() 596 if (step->depth == JDWP_STEP_DEPTH(INTO)) { in stepControl_handleStep() 733 if (step->depth == JDWP_STEP_DEPTH(INTO) || step->fromStackDepth > 0) { in initEvents() 768 case JDWP_STEP_DEPTH(INTO): in initEvents()
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Events/ |
D | SingleStepTest.java | 67 stepFunction(JDWPConstants.StepSize.LINE, JDWPConstants.StepDepth.INTO); in testSingleStep2() 87 stepFunction(JDWPConstants.StepSize.MIN, JDWPConstants.StepDepth.INTO); in testSingleStep4()
|
D | CombinedEventsTest.java | 137 setRequestCommand.setNextValueAsInt(JDWPConstants.StepDepth.INTO); in testCombinedEvents_01() 272 setRequestCommand.setNextValueAsInt(JDWPConstants.StepDepth.INTO); in testCombinedEvents_02() 386 setRequestCommand.setNextValueAsInt(JDWPConstants.StepDepth.INTO); in testCombinedEvents_03() 513 setRequestCommand.setNextValueAsInt(JDWPConstants.StepDepth.INTO); in testCombinedEvents_04()
|
D | SingleStepThroughReflectionTest.java | 95 setRequestCommand.setNextValueAsInt(StepDepth.INTO); in testSingleStepIntoThroughReflection()
|
D | CombinedEvents003Test.java | 138 setRequestCommand.setNextValueAsInt(JDWPConstants.StepDepth.INTO); in testCombinedEvents003_01()
|
D | EventWithExceptionTest.java | 64 runSingleStepTest(JDWPConstants.StepDepth.INTO); in testSingleStepInto()
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/ |
D | JDWPConstants.java | 641 public static final byte INTO = 0; field in JDWPConstants.StepDepth 656 case INTO: in getName()
|
/external/catch2/docs/ |
D | test-fixtures.md | 24 REQUIRE_THROWS(conn.executeSQL("INSERT INTO employee (id, name) VALUES (?, ?)", getID(), "")); 27 REQUIRE(conn.executeSQL("INSERT INTO employee (id, name) VALUES (?, ?)", getID(), "Joe Bloggs"));
|
/external/u-boot/doc/ |
D | README.console | 33 HOW CAN I USE STANDARD FILE INTO THE SOURCES? 62 HOW CAN I USE STANDARD FILE INTO APPLICATIONS?
|
/external/tensorflow/tensorflow/contrib/ignite/ |
D | README.md | 50 jdbc:ignite:thin://localhost/> INSERT INTO KITTEN_CACHE VALUES (1, 'WARM KITTY'); 51 jdbc:ignite:thin://localhost/> INSERT INTO KITTEN_CACHE VALUES (2, 'SOFT KITTY'); 52 jdbc:ignite:thin://localhost/> INSERT INTO KITTEN_CACHE VALUES (3, 'LITTLE BALL OF FUR');
|
/external/python/cpython2/PC/bdist_wininst/ |
D | install.rc | 6 IF CHANGES TO THIS FILE ARE CHECKED INTO PYTHON CVS, THE RECOMPILED BINARIES
|
/external/curl/packages/vms/ |
D | curlmsg.sdl | 11 /* FILE AND PUTTING ALL THE CURLE_* ENUM STUFF INTO THIS FILE,
|
/external/oj-libjdwp/src/share/classes/com/sun/tools/jdi/ |
D | EventRequestManagerImpl.java | 569 jdwpDepth = JDWP.StepDepth.INTO; in StepRequestImpl()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/X86/ |
D | X86ScheduleZnver1.td | 658 // INTO 659 def : InstRW<[WriteMicrocoded], (instrs INTO)>;
|
D | X86SchedHaswell.td | 664 // INTO. 668 def : InstRW<[HWWriteINTO], (instrs INTO)>;
|
D | X86ScheduleAtom.td | 614 def : InstRW<[AtomWrite01_6], (instrs CMPXCHG8rm, INTO, XLAT,
|
/external/python/cpython2/Doc/library/ |
D | sqlite3.rst | 40 c.execute("INSERT INTO stocks VALUES ('2006-01-05','BUY','RHAT',100,35.14)") 80 c.executemany('INSERT INTO stocks VALUES (?,?,?,?,?)', purchases)
|
/external/python/cpython3/Doc/library/ |
D | sqlite3.rst | 42 c.execute("INSERT INTO stocks VALUES ('2006-01-05','BUY','RHAT',100,35.14)") 82 c.executemany('INSERT INTO stocks VALUES (?,?,?,?,?)', purchases)
|
/external/swiftshader/third_party/LLVM/lib/Target/X86/ |
D | X86InstrSystem.td | 34 def INTO : I<0xce, RawFrm, (outs), (ins), "into", []>;
|
/external/oj-libjdwp/make/data/jdwp/ |
D | jdwp.spec | 3218 (Constant INTO = 0
|
/external/llvm/lib/Target/X86/ |
D | X86SchedHaswell.td | 966 // INTO. 970 def : InstRW<[WriteINTO], (instregex "INTO")>;
|
D | X86InstrSystem.td | 36 def INTO : I<0xce, RawFrm, (outs), (ins), "into", []>;
|